16 lines
208 B
Go
16 lines
208 B
Go
package config
|
|
|
|
import "os"
|
|
|
|
type Config struct {
|
|
DBUrl string
|
|
JWTSecret string
|
|
}
|
|
|
|
func GetConfig() Config {
|
|
return Config{
|
|
DBUrl: os.Getenv("DB_URL"),
|
|
JWTSecret: os.Getenv("JWT_SECRET"),
|
|
}
|
|
}
|