morffix/config/config.go
2024-05-07 18:52:06 +02:00

19 lines
290 B
Go

package config
type Config struct {
SharedSecret string
Server Server
Worker Worker
}
type Server struct {
Address string
Database string
HealthCheckCommand string
TranscodeCommand string
}
type Worker struct {
Address string
Name string
}