7 lines
155 B
Go
7 lines
155 B
Go
|
package config
|
||
|
|
||
|
type Handler struct {
|
||
|
Entry string `json:"entry" yaml:"entry" toml:"entry"`
|
||
|
Socket Socket `json:"socket" yaml:"socket" toml:"socket"`
|
||
|
}
|