aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--main.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/main.go b/main.go
deleted file mode 100644
index 5ab16fd..0000000
--- a/main.go
+++ /dev/null
@@ -1,14 +0,0 @@
-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)
-}