12 lines
179 B
Go
12 lines
179 B
Go
package printers
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/golangci/golangci-lint/pkg/result"
|
|
)
|
|
|
|
type Printer interface {
|
|
Print(ctx context.Context, issues <-chan result.Issue) error
|
|
}
|