feat: initial commit

This commit is contained in:
2025-02-22 09:42:15 +01:00
parent ee4a65b345
commit e6e5c9b04d
43 changed files with 1191 additions and 247 deletions

View File

@ -3,8 +3,8 @@ package config
import "time"
type HTTP struct {
BaseURL string `env:"BASE_URL" envDefault:"http://localhost:3000"`
Address string `env:"ADDRESS,expand" envDefault:":3000"`
BaseURL string `env:"BASE_URL" envDefault:"http://localhost:3001"`
Address string `env:"ADDRESS,expand" envDefault:":3001"`
Session Session `envPrefix:"SESSION_"`
}