mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-03 17:29:09 +08:00
26 lines
499 B
Go
26 lines
499 B
Go
package components
|
|
|
|
type IBlock interface {
|
|
GetDirectives() []IDirective
|
|
FindDirectives(directiveName string) []IDirective
|
|
UpdateDirectives(directiveName string, directive Directive)
|
|
AddDirectives(directive Directive)
|
|
RemoveDirectives(names []string)
|
|
GetComment() string
|
|
}
|
|
|
|
type IDirective interface {
|
|
GetName() string
|
|
GetParameters() []string
|
|
GetBlock() IBlock
|
|
GetComment() string
|
|
}
|
|
|
|
type FileDirective interface {
|
|
isFileDirective()
|
|
}
|
|
|
|
type IncludeDirective interface {
|
|
FileDirective
|
|
}
|