mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-22 07:52:59 +08:00
16 lines
247 B
Python
16 lines
247 B
Python
|
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)
|