mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
444 B
30 lines
444 B
package components
|
|
|
|
type Directive struct {
|
|
Line int
|
|
Block IBlock
|
|
Name string
|
|
Comment string
|
|
Parameters []string
|
|
}
|
|
|
|
func (d *Directive) GetComment() string {
|
|
return d.Comment
|
|
}
|
|
|
|
func (d *Directive) GetName() string {
|
|
return d.Name
|
|
}
|
|
|
|
func (d *Directive) GetParameters() []string {
|
|
return d.Parameters
|
|
}
|
|
|
|
func (d *Directive) GetBlock() IBlock {
|
|
return d.Block
|
|
}
|
|
|
|
func (d *Directive) GetLine() int {
|
|
return d.Line
|
|
}
|