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 e50fb96 commit ae1359c
Show file tree
Hide file tree
Showing 10 changed files with 1 addition and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func example() {
## Installing
### Using Go CLI
```
go get github.com/gazebo-web/gz-go/v9
go get github.com/gazebo-web/gz-go/v10
```

## Contribute
Expand Down
1 change: 0 additions & 1 deletion database/gorm/gorm.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"errors"
"log"

"github.com/gazebo-web/gz-go/v9"
"gorm.io/gorm"
)

Expand Down
2 changes: 0 additions & 2 deletions mailing/sendgrid_injector.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package mailing

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

// 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: 0 additions & 1 deletion mailing/sendgrid_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import (
"net/http"
"testing"

"github.com/gazebo-web/gz-go/v9"
"github.com/sendgrid/rest"
"github.com/sendgrid/sendgrid-go/helpers/mail"
"github.com/stretchr/testify/mock"
Expand Down
1 change: 0 additions & 1 deletion mailing/ses.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ 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/v9"
)

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

"github.com/gazebo-web/gz-go/v9"
"github.com/sendgrid/rest"
"github.com/stretchr/testify/suite"
)
Expand Down
1 change: 0 additions & 1 deletion scheduler/scheduler.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"sync"
"time"

"github.com/gazebo-web/gz-go/v9"
sch "gitlab.com/ignitionrobotics/web/scheduler"
)

Expand Down
1 change: 0 additions & 1 deletion storage/filesystem_storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"io"
"os"

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

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

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

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

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

Expand Down

0 comments on commit ae1359c

Please sign in to comment.