initial commit

This commit is contained in:
2026-03-05 12:21:18 +03:00
commit 992db80ea3
16 changed files with 623 additions and 0 deletions

13
app/config.go Normal file
View File

@@ -0,0 +1,13 @@
package app
import "os"
type Config struct {
JWTSecret string
}
var cfg *Config
func LoadConfig() {
cfg = &Config{JWTSecret: os.Getenv("JWT_SECRET")}
}