goufy/main.go

13 lines
148 B
Go
Raw Normal View History

2021-04-02 18:53:25 +02:00
package main
import (
2021-04-06 17:11:10 +02:00
"git.fanyx.xyz/fanyx/goufy/pkg/config"
2021-04-02 18:53:25 +02:00
)
func main() {
2021-04-06 17:11:10 +02:00
var c config.AppConfig
c.ReadConfig()
2021-04-02 18:53:25 +02:00
2021-04-06 17:11:10 +02:00
// fmt.Printf("#%v", c)
2021-04-02 18:53:25 +02:00
}