-
Notifications
You must be signed in to change notification settings - Fork 77
/
startup.py
34 lines (27 loc) · 902 Bytes
/
startup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Contact : 191715030@qq.com
Author : shenshuo
Date : 2019年5月6日
Desc : 启动文件
"""
import fire
from tornado.options import define
from websdk.program import MainProgram
from settings import settings as app_settings
from biz.applications import Application as DNSApi
from biz.domain_program import Application as DNSCron
define("service", default='api', help="start service flag", type=str)
class MyProgram(MainProgram):
def __init__(self, service='dns', progress_id='dns'):
self.__app = None
settings = app_settings
if service == 'dns':
self.__app = DNSApi(**settings)
elif service == 'dns_cron':
self.__app = DNSCron(**settings)
super(MyProgram, self).__init__(progress_id)
self.__app.start_server()
if __name__ == '__main__':
fire.Fire(MyProgram)