mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
9 lines
274 B
Python
9 lines
274 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)
|
|
|