Initial import.

This commit is contained in:
2022-02-26 22:57:13 -08:00
commit a3966fc28b
16 changed files with 730 additions and 0 deletions

21
cmd/sensenet/main.go Normal file
View File

@@ -0,0 +1,21 @@
package main
import (
"flag"
"fmt"
"log"
"git.wntrmute.dev/kyle/sensenet/config"
)
func main() {
configFilePath := flag.String("f", config.DefaultConfigFile, "`path` to config file")
flag.Parse()
config, err := config.LoadConfig(*configFilePath)
if err != nil {
log.Fatal(err)
}
fmt.Println(config)
}