mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 16:33:11 +08:00
19 lines
399 B
Python
19 lines
399 B
Python
"""Note:
|
|
- The felicity app must be creaed first before importing other modules.
|
|
- This is important to register felicity in sanic registry
|
|
"""
|
|
from felicity.lims import factory
|
|
|
|
description = """
|
|
Felicity LIMS API helps you do awesome stuff. 🚀
|
|
|
|
You will be able to:
|
|
...
|
|
"""
|
|
|
|
app_configs = {
|
|
"title": "Felicity LIMS",
|
|
'description': description
|
|
}
|
|
|
|
felicity = factory(app_configs)
|