felicity-lims/felicity/main.py

11 lines
275 B
Python
Raw Normal View History

2023-08-14 02:08:08 +08:00
"""Note:
- The felicity app must be creaed first before importing other modules.
- This is important to register felicity in sanic registry
"""
from sanic import Sanic
2023-09-11 13:02:05 +08:00
2023-08-14 02:08:08 +08:00
felicity = Sanic("felicity-lims")
from lims import register_felicity
2023-09-11 13:02:05 +08:00
register_felicity(felicity)