main.go file for command binary handler
parent
a67e8d3388
commit
0fef07cfae
|
@ -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)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue