mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-03 20:27:46 +08:00
14 lines
184 B
Go
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",
|
|
},
|
|
}
|
|
}
|