Skip to content

Commit

Permalink
Fix missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoshuck committed Feb 21, 2024
1 parent 4fa5ee6 commit 6f63379
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mailing/sendgrid_injector.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package mailing

import "github.com/gazebo-web/gz-go/v10"

// contentInjector is a function that prepares and configures email content to be sent by sendgridEmailService.
type contentInjector func(b sendgridEmailBuilder, key string, data any) (sendgridEmailBuilder, error)

Expand Down
1 change: 1 addition & 0 deletions mailing/sendgrid_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"net/http"
"testing"

"github.com/gazebo-web/gz-go/v10"
"github.com/sendgrid/rest"
"github.com/sendgrid/sendgrid-go/helpers/mail"
"github.com/stretchr/testify/mock"
Expand Down
1 change: 1 addition & 0 deletions mailing/ses.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/service/ses"
"github.com/aws/aws-sdk-go/service/ses/sesiface"
"github.com/gazebo-web/gz-go/v10"
)

// awsSimpleEmailService implements the Sender interface using AWS Simple Email Service API.
Expand Down
1 change: 1 addition & 0 deletions mailing/templates_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"net/http"
"testing"

"github.com/gazebo-web/gz-go/v10"
"github.com/sendgrid/rest"
"github.com/stretchr/testify/suite"
)
Expand Down
1 change: 1 addition & 0 deletions storage/filesystem_storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"io"
"os"

"github.com/gazebo-web/gz-go/v10"
"github.com/pkg/errors"
)

Expand Down
1 change: 1 addition & 0 deletions storage/gcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"time"

"cloud.google.com/go/storage"
"github.com/gazebo-web/gz-go/v10"
)

// gcs implements Storage using the Google Cloud Storage (GCS) service.
Expand Down
1 change: 1 addition & 0 deletions storage/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"path/filepath"
"strconv"

"github.com/gazebo-web/gz-go/v10"
"github.com/pkg/errors"
)

Expand Down

0 comments on commit 6f63379

Please sign in to comment.