morffix/config/config.go
2024-05-09 04:47:19 +02:00

19 lines
260 B
Go

package config
type Config struct {
SharedSecret string
Server Server
Worker Worker
}
type Server struct {
Address string
Database string
}
type Worker struct {
ID string
Address string
Name string
FFmpegPath string
}