BE-MiniERP/config/config.go
2025-06-22 23:23:26 +07:00

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"),
}
}