This commit is contained in:
Alex Yatskov 2015-12-28 21:21:13 +09:00
parent b0041d3b08
commit 24db16ccf7

View File

@ -92,15 +92,15 @@ type Initializer interface {
} }
type Accepter interface { type Accepter interface {
Accept(ctx Context, file File) bool Accept(ctx Context, f File) bool
}
type Finalizer interface {
Finalize(ctx Context) error
} }
type Processor interface { type Processor interface {
Process(ctx Context, f File) error Process(ctx Context, f File) error
} }
type Finalizer interface {
Finalize(ctx Context) error
}
type Plugin interface{} type Plugin interface{}