26 lines
412 B
Go
26 lines
412 B
Go
package bootstrap
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/assimon/luuu/config"
|
|
"github.com/assimon/luuu/model/dao"
|
|
"github.com/assimon/luuu/mq"
|
|
"github.com/assimon/luuu/task"
|
|
"github.com/assimon/luuu/telegram"
|
|
"github.com/assimon/luuu/util/log"
|
|
)
|
|
|
|
var initOnce sync.Once
|
|
|
|
func InitApp() {
|
|
initOnce.Do(func() {
|
|
config.Init()
|
|
log.Init()
|
|
dao.Init()
|
|
mq.Start()
|
|
go telegram.BotStart()
|
|
go task.Start()
|
|
})
|
|
}
|