11 lines
174 B
Go
Raw Normal View History

2021-01-03 18:15:44 +05:30
package constants
import (
"os"
)
2021-05-29 16:32:11 +05:30
const HTTPHostPort = "0.0.0.0:6060"
2021-01-03 18:15:44 +05:30
var DruidClientUrl = os.Getenv("DruidClientUrl")
var DruidDatasource = os.Getenv("DruidDatasource")