1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-31 01:53:50 +02:00

chore: gofumpt

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos Alexandro Becker 2021-09-12 19:59:26 -03:00
parent 1c44c2149d
commit e8c1a8af52
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 4 additions and 6 deletions

View File

@ -4,12 +4,11 @@ package announce
import (
"fmt"
"github.com/goreleaser/goreleaser/internal/pipe/teams"
"github.com/goreleaser/goreleaser/internal/middleware"
"github.com/goreleaser/goreleaser/internal/pipe/discord"
"github.com/goreleaser/goreleaser/internal/pipe/reddit"
"github.com/goreleaser/goreleaser/internal/pipe/slack"
"github.com/goreleaser/goreleaser/internal/pipe/teams"
"github.com/goreleaser/goreleaser/internal/pipe/twitter"
"github.com/goreleaser/goreleaser/pkg/context"
)
@ -34,8 +33,8 @@ var announcers = []Announcer{
discord.Pipe{},
reddit.Pipe{},
slack.Pipe{},
twitter.Pipe{},
teams.Pipe{},
twitter.Pipe{},
}
// Run the pipe.

View File

@ -5,8 +5,6 @@ package defaults
import (
"fmt"
"github.com/goreleaser/goreleaser/internal/pipe/teams"
"github.com/goreleaser/goreleaser/internal/pipe/archive"
"github.com/goreleaser/goreleaser/internal/pipe/artifactory"
"github.com/goreleaser/goreleaser/internal/pipe/blob"
@ -27,6 +25,7 @@ import (
"github.com/goreleaser/goreleaser/internal/pipe/snapcraft"
"github.com/goreleaser/goreleaser/internal/pipe/snapshot"
"github.com/goreleaser/goreleaser/internal/pipe/sourcearchive"
"github.com/goreleaser/goreleaser/internal/pipe/teams"
"github.com/goreleaser/goreleaser/internal/pipe/twitter"
"github.com/goreleaser/goreleaser/pkg/context"
)
@ -62,9 +61,9 @@ var Defaulters = []Defaulter{
brew.Pipe{},
scoop.Pipe{},
discord.Pipe{},
teams.Pipe{},
reddit.Pipe{},
slack.Pipe{},
teams.Pipe{},
twitter.Pipe{},
milestone.Pipe{},
}