mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-05 23:28:42 +00:00
c28f7cb29f
Initial part of #435
11 lines
174 B
Go
11 lines
174 B
Go
package printers
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/golangci/golangci-lint/pkg/result"
|
|
)
|
|
|
|
type Printer interface {
|
|
Print(ctx context.Context, issues []result.Issue) error
|
|
}
|