mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-02 19:04:14 +02:00
core/lint: upgrade golangci-lint, replace interface{} with any (#5099)
* core/lint: upgrade golangci-lint, replace interface{} with any * regen proto
This commit is contained in:
parent
614048ae9c
commit
1a5b8b606f
135 changed files with 341 additions and 340 deletions
|
@ -20,13 +20,13 @@ import (
|
|||
func main() {
|
||||
generateCmd := &ffcli.Command{
|
||||
Name: "generate-configuration",
|
||||
Exec: func(ctx context.Context, args []string) error {
|
||||
Exec: func(ctx context.Context, _ []string) error {
|
||||
return runGenerateConfiguration(ctx)
|
||||
},
|
||||
}
|
||||
rootCmd := &ffcli.Command{
|
||||
Subcommands: []*ffcli.Command{generateCmd},
|
||||
Exec: func(ctx context.Context, args []string) error {
|
||||
Exec: func(_ context.Context, _ []string) error {
|
||||
return flag.ErrHelp
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue