func getDBC() (string, bool) {
conn := os.Getenv("dbc")
if conn == "" {
return conn, false
}
return conn, true
}
func getDBC() (string, bool) {
conn := os.Getenv("dbc")
if conn == "" {
return conn, false
}
return conn, true
}