aboutsummaryrefslogtreecommitdiff
path: root/config/config.go
diff options
context:
space:
mode:
authorJulio Capote <jcapote@gmail.com>2022-12-17 15:31:03 +0000
committerJulio Capote <jcapote@gmail.com>2022-12-17 15:31:03 +0000
commitd3fb280a146759ca1468c1773f41599b4fabb5fa (patch)
tree931e475e12baf1aecd76d8fab80c10b4b3d3c83d /config/config.go
downloadcommunique-d3fb280a146759ca1468c1773f41599b4fabb5fa.tar.gz
initial
Diffstat (limited to 'config/config.go')
-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
+}