chore(): docker-compose

This commit is contained in:
2025-08-27 21:29:52 +02:00
parent 75dfeaffd2
commit 5552258f20
9 changed files with 89 additions and 62 deletions

View File

@@ -8,15 +8,15 @@ import (
)
type Config struct {
SMTP SMTPConfig
From string
SMTP SMTPConfig `envPrefix:"SMTP_"`
From string `env:"FROM"`
}
type SMTPConfig struct {
Host string
Port string
User string
Password string
Host string `env:"HOST"`
Port string `env:"PORT"`
User string `env:"USER"`
Password string `env:"PASSWORD"`
}
type Service struct {