1Panel/backend/utils/nginx/components/statement.go

26 lines
499 B
Go
Raw Normal View History

package components
type IBlock interface {
GetDirectives() []IDirective
FindDirectives(directiveName string) []IDirective
UpdateDirectives(directiveName string, directive Directive)
AddDirectives(directive Directive)
2022-10-28 17:04:57 +08:00
RemoveDirectives(names []string)
GetComment() string
}
type IDirective interface {
GetName() string
GetParameters() []string
GetBlock() IBlock
GetComment() string
}
type FileDirective interface {
isFileDirective()
}
type IncludeDirective interface {
FileDirective
}