mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2026-02-04 05:15:10 +00:00
7 lines
119 B
Python
7 lines
119 B
Python
"""Entry point for `python -m unilabos`."""
|
|
|
|
from unilabos.app.main import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|