13 lines
201 B
Go
13 lines
201 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"log"
|
||
|
|
"golang-app/config"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
cfg := config.GetConfig()
|
||
|
|
log.Printf("Telegram token is \"%s\", owner id is %d", cfg.API.Token, cfg.API.Owner)
|
||
|
|
log.Println(cfg)
|
||
|
|
}
|