aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/config.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go
new file mode 100644
index 0000000..2d63026
--- /dev/null
+++ b/config/config.go
@@ -0,0 +1,11 @@
+package config
+
+type Config struct {
+ Handlers []Handler
+}
+
+type Handler struct {
+ Name string
+ Exec string
+ Rpc string
+}