aboutsummaryrefslogtreecommitdiff
path: root/model/visitor.go
blob: 3f290d3e447260a72e37aa405899ee8e89eecef7 (plain) (blame)
1
2
3
4
5
6
package model

type Visitor interface {
	VisitDirective(ident string, args Values, body Body) error
	VisitSetting(key string, values Values) error
}