mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 16:33:11 +08:00
16 lines
309 B
Python
16 lines
309 B
Python
import logging
|
|
|
|
from felicity.init import initialize_felicity
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def main() -> None:
|
|
logger.info("Creating initial data")
|
|
initialize_felicity()
|
|
logger.info("Initial data created")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|