10 lines
155 B
Go
10 lines
155 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
"git.loafle.net/commons/server-go/socket/web"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
ServerHandler web.ServerHandlers `json:"serverHandler"`
|
||
|
}
|