Rainbond/gateway/controller/openresty/model/stream.go
2018-11-08 17:22:26 +08:00

14 lines
184 B
Go

package model
type Stream struct {
Includes []string
}
func NewStream() *Stream {
return &Stream{
Includes: []string{
"/export/servers/nginx/conf/servers-tcp.conf",
},
}
}