summaryrefslogtreecommitdiff
path: root/wasp/apps
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-04-12 07:40:49 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-04-12 07:40:49 (GMT)
commit80d518b75b46dc2e1780f59c19d3c03a5410542a (patch)
tree8db6c2932c1b271a74cd81d1276fd8314b7ffaae /wasp/apps
parent64a97fce58a6f4a5dcd142f0dc82da1ada34d652 (diff)
wasp: apps: Add shortcuts to all apps
Diffstat (limited to 'wasp/apps')
-rw-r--r--wasp/apps/__init__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/wasp/apps/__init__.py b/wasp/apps/__init__.py
new file mode 100644
index 0000000..222ceb7
--- /dev/null
+++ b/wasp/apps/__init__.py
@@ -0,0 +1,10 @@
+# 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