File size: 263 Bytes
f6a18fc
c9bf621
 
 
 
f6a18fc
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3
"""DS2API Browser 启动入口。

账号和密钥从 .env 文件自动加载,格式见 .env.example。
"""
import os
import sys

sys.path.insert(0, os.path.dirname(__file__))

from main import main

if __name__ == "__main__":
    main()