8 lines
92 B
Go
8 lines
92 B
Go
package config
|
|
|
|
import "os"
|
|
|
|
func Endpoint() string {
|
|
return os.Getenv("ETCD_ENDPOINTS")
|
|
}
|