diff options
| author | Matthieu <matthieu@developershouse.xyz> | 2021-10-02 00:49:57 +0400 |
|---|---|---|
| committer | Matthieu <matthieu@developershouse.xyz> | 2021-10-02 00:49:57 +0400 |
| commit | b36eca5b9fc32d22820f2a08bd935d66b6e856c2 (patch) | |
| tree | 6e5072bccbe1e7851d7da878f6b5292f5b90c2ab /manager/lib/config.go | |
| parent | 1707bb9c10cb313381bb76a9a45f3c403b88d119 (diff) | |
scheduler basic structure
Diffstat (limited to 'manager/lib/config.go')
| -rw-r--r-- | manager/lib/config.go | 10 |
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 +} |
