14 lines
233 B
Go
14 lines
233 B
Go
package config
|
|
|
|
import (
|
|
"github.com/wwweww/go-wst/hybrid"
|
|
"github.com/wwweww/go-wst/stateless"
|
|
"github.com/zeromicro/go-zero/rest"
|
|
)
|
|
|
|
type Config struct {
|
|
rest.RestConf
|
|
Hybrid hybrid.HybridConf
|
|
Stateless stateless.Config
|
|
}
|