FILE / ScuroNeko/H2Master

app/config.go

Исходный файл и его история в репозитории.
FILE 992db80ea327517890882867d4c24b826e3e94aa
This repository has been archived on 2026-04-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
H2Master/app/config.go
T
2026-03-05 12:21:18 +03:00

14 lines
158 B
Go

package app
import "os"
type Config struct {
JWTSecret string
}
var cfg *Config
func LoadConfig() {
cfg = &Config{JWTSecret: os.Getenv("JWT_SECRET")}
}