summaryrefslogtreecommitdiff
path: root/manager/lib/config.go
diff options
context:
space:
mode:
authorMatthieu <matthieu@developershouse.xyz>2021-10-02 00:49:57 +0400
committerMatthieu <matthieu@developershouse.xyz>2021-10-02 00:49:57 +0400
commitb36eca5b9fc32d22820f2a08bd935d66b6e856c2 (patch)
tree6e5072bccbe1e7851d7da878f6b5292f5b90c2ab /manager/lib/config.go
parent1707bb9c10cb313381bb76a9a45f3c403b88d119 (diff)
scheduler basic structure
Diffstat (limited to 'manager/lib/config.go')
-rw-r--r--manager/lib/config.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/manager/lib/config.go b/manager/lib/config.go
new file mode 100644
index 0000000..07d0de9
--- /dev/null
+++ b/manager/lib/config.go
@@ -0,0 +1,10 @@
+package lib
+
+
+type GrpcConfig struct {
+ Server string
+}
+
+type Config struct {
+ Grpc GrpcConfig
+}