aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--main.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..5ab16fd
--- /dev/null
+++ b/main.go
@@ -0,0 +1,14 @@
+package main
+
+import (
+ "log"
+ "shell-game-launcher/config"
+)
+
+func main() {
+ config, err := config.LoadFile("example/complete.yaml")
+ if err != nil {
+ log.Fatal(err)
+ }
+ log.Printf("%+v", config)
+}