aboutsummaryrefslogtreecommitdiff
path: root/model/directive.go
blob: 3852e72d3baecdc693b4bce7b26b9f3b43bb9bf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
package model

type Directive struct {
	Name      string
	Arguments Values
	Body      Body
}

type Directives []*Directive