Skip to content

Commit

Permalink
feat!: change module name format (#20)
Browse files Browse the repository at this point in the history
The module has been renamed using the format `github.com/<org>/<repo>`.
Module imports have been updated appropriately.
  • Loading branch information
ctgardner authored Dec 17, 2024
1 parent 6baedbf commit 0e2d4c6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module ecs-task-runner
module github.com/cultureamp/ecs-task-runner-buildkite-plugin

go 1.22.3

Expand Down
4 changes: 2 additions & 2 deletions src/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"os"

"ecs-task-runner/buildkite"
"ecs-task-runner/plugin"
"github.com/cultureamp/ecs-task-runner-buildkite-plugin/buildkite"
"github.com/cultureamp/ecs-task-runner-buildkite-plugin/plugin"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion src/plugin/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"testing"

"ecs-task-runner/plugin"
"github.com/cultureamp/ecs-task-runner-buildkite-plugin/plugin"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/task-runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"time"

awsinternal "ecs-task-runner/aws"
"ecs-task-runner/buildkite"
awsinternal "github.com/cultureamp/ecs-task-runner-buildkite-plugin/aws"
"github.com/cultureamp/ecs-task-runner-buildkite-plugin/buildkite"

"github.com/aws/aws-sdk-go-v2/aws"
awsconfig "github.com/aws/aws-sdk-go-v2/config"
Expand Down

0 comments on commit 0e2d4c6

Please sign in to comment.