FILE / ScuroNeko/H2Master

app/config.go

Исходный файл и его история в репозитории.
FILE main
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
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")}
}