mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-01-04 02:31:14 -06:00
21 lines
645 B
Go
21 lines
645 B
Go
package command
|
|
|
|
import (
|
|
"codeberg.org/shroff/phylum/server/internal/auth"
|
|
"codeberg.org/shroff/phylum/server/internal/command/serve"
|
|
"codeberg.org/shroff/phylum/server/internal/core"
|
|
"codeberg.org/shroff/phylum/server/internal/db"
|
|
"codeberg.org/shroff/phylum/server/internal/mail"
|
|
"codeberg.org/shroff/phylum/server/internal/storage"
|
|
)
|
|
|
|
type Config struct {
|
|
Debug bool `koanf:"debug"`
|
|
DB db.Config `koanf:"db"`
|
|
Storage storage.Config `koanf:"storage"`
|
|
Server serve.Config `koanf:"server"`
|
|
Mail mail.Config `koanf:"mail"`
|
|
User core.Config `koanf:"user"`
|
|
Auth auth.Config `koanf:"auth"`
|
|
}
|