10 lines
190 B
Python
10 lines
190 B
Python
class ConfigInfo:
|
|
# 数据库配置
|
|
db_hk_kline_1d = {
|
|
'host': 'localhost',
|
|
'user': 'root',
|
|
'password': 'bzskmysql',
|
|
'database': 'hk_kline_1d'
|
|
}
|
|
|