123456789101112131415 |
- #!/usr/bin/env python
- # -*- encoding: utf-8 -*-
- '''
- @Contact : liuyuqi.gov@msn.cn
- @Time : 2024/07/29 01:40:10
- @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
- @Desc : enter point
- '''
- from apps import app
- if __name__=='__main__':
- from nicegui import start, ui
- start()
- # ui.run(title='An experimental task generator', favicon="favicon.ico", reload='FLY_ALLOC_ID' not in os.environ)
- # ui.run(host=webui_ip, port=webui_port, title=webui_title, language="zh-CN", dark=False, reload=False)
|