gopp/eval.go

6 lines
115 B
Go

package tpp
type Evaler interface {
Tags() [2]string
Eval(filePath string, pieces []string) ([]string, error)
}