diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-04-12 07:40:49 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-04-12 07:40:49 (GMT) |
| commit | 80d518b75b46dc2e1780f59c19d3c03a5410542a (patch) | |
| tree | 8db6c2932c1b271a74cd81d1276fd8314b7ffaae /wasp | |
| parent | 64a97fce58a6f4a5dcd142f0dc82da1ada34d652 (diff) | |
wasp: apps: Add shortcuts to all apps
Diffstat (limited to 'wasp')
| -rw-r--r-- | wasp/apps/__init__.py | 10 | ||||
| -rw-r--r-- | wasp/wasp.py | 7 |
2 files changed, 11 insertions, 6 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 diff --git a/wasp/wasp.py b/wasp/wasp.py index 2711454..e32e914 100644 --- a/wasp/wasp.py +++ b/wasp/wasp.py @@ -13,12 +13,7 @@ import machine import watch import widgets -from apps.clock import ClockApp -from apps.flashlight import FlashlightApp -from apps.launcher import LauncherApp -from apps.pager import CrashApp -from apps.settings import SettingsApp -from apps.testapp import TestApp +from apps import * class EventType(): """Enumerated interface actions. |
