aboutsummaryrefslogtreecommitdiff
path: root/cmd/conf/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/conf/main.go')
-rw-r--r--cmd/conf/main.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/cmd/conf/main.go b/cmd/conf/main.go
deleted file mode 100644
index fa59455..0000000
--- a/cmd/conf/main.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "dim13.org/acme"
-)
-
-func main() {
- c, _ := acme.LoadConfig("acme.toml")
- for _, v := range c.Desire {
- fmt.Println("Provider", c.Provider[v.Provider])
- fmt.Println("Account", c.Account[v.Account])
- fmt.Printf("%+v\n", v)
- }
-}