I am batman

This commit is contained in:
2026-06-20 11:07:01 -04:00
commit 013d01358c
52 changed files with 7615 additions and 0 deletions

View File

@@ -0,0 +1 @@
This is the configuration file for the Auth Service microservice.

View File

@@ -0,0 +1,22 @@
package config
import (
"os"
"strconv"
)
type Env struct {
Port int
JWTSecret string
TokenDuration int
DatabaseURL string
RedisAddr string
RedisPassword string
RedisDB int
EmailHost string
EmailPort int
EmailUsername string
EmailPassword string
EmailFrom string
FrontendURL string
}