You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
348 B
17 lines
348 B
package main
|
|
|
|
import (
|
|
"key_performance_indicators/initialization/app"
|
|
"key_performance_indicators/initialization/databaseinit"
|
|
"key_performance_indicators/initialization/nosql"
|
|
)
|
|
|
|
func main() {
|
|
//加载数据库
|
|
databaseinit.LoadDatabase()
|
|
//加载Redis
|
|
nosql.LoadRedis()
|
|
//启动定时任务
|
|
// scheduledtask.TimeTask()
|
|
app.RunItem()
|
|
}
|
|
|