18 lines
310 B
Go
18 lines
310 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"git.gnous.eu/ada/git-mirror/internal/config"
|
||
|
"github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
initConfig, err := config.LoadToml("config.example.toml")
|
||
|
if err != nil {
|
||
|
logrus.Fatal(err)
|
||
|
}
|
||
|
|
||
|
initConfig.Log.Init()
|
||
|
logrus.Info("Config loaded")
|
||
|
logrus.Debug("Config: ", initConfig)
|
||
|
}
|