1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-20 00:39:17 +08:00

19 lines
387 B
Go
Raw Normal View History

package components
type IBlock interface {
GetDirectives() []IDirective
FindDirectives(directiveName string) []IDirective
RemoveDirective(name string, params []string)
UpdateDirective(name string, params []string)
GetComment() string
GetLine() int
}
type IDirective interface {
GetName() string
GetParameters() []string
GetBlock() IBlock
GetComment() string
GetLine() int
}