11 lines
160 B
Go
11 lines
160 B
Go
package config;
|
|
|
|
type Config struct {
|
|
Nodes map[string] struct{
|
|
Ip string
|
|
DockerVolumePath string
|
|
}
|
|
DockerManagerBaseUrl string
|
|
LocalBasePath string
|
|
};
|