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

7
config/config.go Normal file
View File

@ -0,0 +1,7 @@
package config
import "errors"
func Refresh() error {
return errors.New("not impl")
}

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module local/truckstop
go 1.17

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")
}