1
0
Fork 0

wasp: apps: Add shortcuts to all apps

This commit is contained in:
Daniel Thompson 2020-04-12 08:40:49 +01:00
parent 64a97fce58
commit 80d518b75b
2 changed files with 11 additions and 6 deletions

10
wasp/apps/__init__.py Normal file
View file

@ -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

View file

@ -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.