mirror of
https://github.com/ManyakRus/telegram_loki.git
synced 2024-12-13 21:42:22 +02:00
19 lines
308 B
Go
19 lines
308 B
Go
package main
|
|
|
|
import (
|
|
ConfigMain "github.com/ManyakRus/starter/config"
|
|
"github.com/ManyakRus/starter/telegram_client"
|
|
"github.com/ManyakRus/telegram_loki/internal/config"
|
|
)
|
|
|
|
func main() {
|
|
StartApp()
|
|
}
|
|
|
|
func StartApp() {
|
|
ConfigMain.LoadEnv()
|
|
config.FillSettings()
|
|
|
|
telegram_client.ConnectTelegram()
|
|
}
|