main.go file for command binary handler

master
Matthew 2024-10-04 17:49:51 -04:00
parent a67e8d3388
commit 0fef07cfae
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
1 changed files with 14 additions and 0 deletions

14
cmd/main.go Normal file
View File

@ -0,0 +1,14 @@
package main
import (
"git.libraryofcode.org/engineering/bces/config"
"log"
)
func main() {
// Load config
config, err := config.LoadConfig("config.json")
if err != nil {
log.Fatalf("Could not load config: %v", err)
}
}