You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
262 B

package config
import "os"
func DbUrl() string {
return os.Getenv("DB_URL")
}
func DbTable() string {
return os.Getenv("DB_TABLE")
}
func DbGsiName() string {
return os.Getenv("DB_GSI_NAME")
}
func DbGsiAttr() string {
return os.Getenv("DB_GSI_ATTR")
}