11 lines
343 B
Python
11 lines
343 B
Python
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
||
|
# Copyright (C) 2020 Daniel Thompson
|
||
|
"""All the apps... in one place"""
|
||
|
|
||
|
from apps.clock import ClockApp
|
||
|
from apps.flashlight import FlashlightApp
|
||
|
from apps.launcher import LauncherApp
|
||
|
from apps.pager import PagerApp, CrashApp
|
||
|
from apps.settings import SettingsApp
|
||
|
from apps.testapp import TestApp
|