This commit is contained in:
Bel LaPointe
2022-01-09 21:10:12 -05:00
parent a27c850796
commit 8701869831
3 changed files with 29 additions and 0 deletions

19
main.go Normal file
View File

@@ -0,0 +1,19 @@
package main
import (
"errors"
"local/truckstop/config"
)
func main() {
if err := _main(); err != nil {
panic(err)
}
}
func _main() error {
if err := config.Refresh(); err != nil {
return err
}
return errors.New("not impl")
}