morffix/config/config.go

15 lines
182 B
Go

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