Skip to content

Commit efdde88

Browse files
committed
fix lint errors
1 parent 0b64477 commit efdde88

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cmd/symbolization/main.go

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"log"
77

88
pprof "github.com/google/pprof/profile"
9+
910
"github.com/grafana/pyroscope/pkg/experiment/symbolization"
1011
)
1112

@@ -95,10 +96,13 @@ func main() {
9596
}
9697

9798
// localDebuginfodClient provides a way to use local debug info files instead of fetching from a server
99+
//
100+
//nolint:all
98101
type localDebuginfodClient struct {
99102
debugFilePath string
100103
}
101104

105+
//nolint:all
102106
func (c *localDebuginfodClient) FetchDebuginfo(buildID string) (string, error) {
103107
return c.debugFilePath, nil
104108
}

0 commit comments

Comments
 (0)