diff options
author | Julio Capote <jcapote@gmail.com> | 2022-12-17 15:31:03 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2022-12-17 15:31:03 +0000 |
commit | d3fb280a146759ca1468c1773f41599b4fabb5fa (patch) | |
tree | 931e475e12baf1aecd76d8fab80c10b4b3d3c83d /config/config.go | |
download | communique-d3fb280a146759ca1468c1773f41599b4fabb5fa.tar.gz |
initial
Diffstat (limited to 'config/config.go')
-rw-r--r-- | config/config.go | 11 |
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 +} |