18 lines
253 B
Go
18 lines
253 B
Go
package main
|
|
|
|
import (
|
|
"me.thuanle/bbot/internal"
|
|
"me.thuanle/bbot/internal/deps"
|
|
"me.thuanle/bbot/internal/services/tele"
|
|
)
|
|
|
|
func main() {
|
|
internal.Startup()
|
|
startDependencies()
|
|
tele.Ins().Start()
|
|
}
|
|
|
|
func startDependencies() {
|
|
deps.InitData()
|
|
}
|