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