mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 16:33:11 +08:00
10 lines
275 B
Python
10 lines
275 B
Python
"""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
|
|
|
|
felicity = Sanic("felicity-lims")
|
|
from lims import register_felicity
|
|
|
|
register_felicity(felicity)
|