Files
opencloud/tests/ociswrapper/wrapper/config/config.go
Sawjan Gurung 14b11f24a6 [tests-only][full-ci] Change wrapper port from 5000 to 5200 (#6321)
* use port 5200 for wrapper API server

* remove binary and ignore the build
2023-05-16 15:40:06 +05:45

14 lines
181 B
Go

package config
var config = map[string]string{
"port": "5200",
}
func Get(key string) string {
return config[key]
}
func Set(key string, value string) {
config[key] = value
}