morffix/config/config.go

16 lines
198 B
Go

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