felicity-lims/felicity/main.py

20 lines
390 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 lims import factory
2023-11-22 17:13:16 +08:00
description = """
Felicity LIMS API helps you do awesome stuff. 🚀
You will be able to:
...
"""
app_configs = {
"title": "Felicity LIMS",
'description': description
}
2023-11-22 17:13:16 +08:00
felicity = factory(app_configs)