summaryrefslogtreecommitdiff
path: root/output/outputinterface.go
blob: 385fe4e1e44f428c91182af9e9f118f584e59e7a (plain)
1
2
3
4
5
6
7
package output

import "github.com/Shugyousha/stasher/work"

type Output interface {
	Output(*work.Work) error
}