From 24db16ccf7bca97223e6d6246e0950b410d1d3ab Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Mon, 28 Dec 2015 21:21:13 +0900 Subject: [PATCH] Cleanup --- types.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/types.go b/types.go index e6eacd8..0a3ad02 100644 --- a/types.go +++ b/types.go @@ -92,15 +92,15 @@ type Initializer interface { } type Accepter interface { - Accept(ctx Context, file File) bool -} - -type Finalizer interface { - Finalize(ctx Context) error + Accept(ctx Context, f File) bool } type Processor interface { Process(ctx Context, f File) error } +type Finalizer interface { + Finalize(ctx Context) error +} + type Plugin interface{}