Skip to content

Commit b8a3d9f

Browse files
committed
Update all imports for new git repository and go module
1 parent f65fde6 commit b8a3d9f

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

cmd/ec2/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"flag"
55

6-
"github.com/yogin/go-ec2/service"
6+
"github.com/yogin/gosh/service"
77
)
88

99
func main() {

cmd/gosh/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"fmt"
66
"os"
77

8-
"github.com/yogin/go-ec2/internal/config"
9-
"github.com/yogin/go-ec2/internal/service"
8+
"github.com/yogin/gosh/internal/config"
9+
"github.com/yogin/gosh/internal/service"
1010
)
1111

1212
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/yogin/go-ec2
1+
module github.com/yogin/gosh
22

33
go 1.21
44

internal/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"path/filepath"
99
"strings"
1010

11-
"github.com/yogin/go-ec2/internal/utils"
11+
"github.com/yogin/gosh/internal/utils"
1212
"gopkg.in/yaml.v3"
1313
)
1414

internal/providers/instance.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"time"
77

88
"github.com/aws/aws-sdk-go/service/ec2"
9-
"github.com/yogin/go-ec2/internal/utils"
9+
"github.com/yogin/gosh/internal/utils"
1010
)
1111

1212
// type Instance interface {

internal/providers/provider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package providers
22

3-
import "github.com/yogin/go-ec2/internal/config"
3+
import "github.com/yogin/gosh/internal/config"
44

55
type ProviderType string
66

internal/providers/provider_aws.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/aws/aws-sdk-go/aws/credentials"
1010
"github.com/aws/aws-sdk-go/aws/session"
1111
"github.com/aws/aws-sdk-go/service/ec2"
12-
"github.com/yogin/go-ec2/internal/config"
12+
"github.com/yogin/gosh/internal/config"
1313
)
1414

1515
var AWSDefaultTags = []string{"name", "env", "environment", "stage", "role", "build", "version"}

internal/service/page.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88

99
"github.com/gdamore/tcell/v2"
1010
"github.com/rivo/tview"
11-
"github.com/yogin/go-ec2/internal/config"
12-
"github.com/yogin/go-ec2/internal/providers"
11+
"github.com/yogin/gosh/internal/config"
12+
"github.com/yogin/gosh/internal/providers"
1313
)
1414

1515
type Slider interface {

internal/service/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/gdamore/tcell/v2"
99
"github.com/rivo/tview"
10-
"github.com/yogin/go-ec2/internal/config"
10+
"github.com/yogin/gosh/internal/config"
1111
)
1212

1313
var (

internal/service/status.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"time"
88

99
"github.com/rivo/tview"
10-
"github.com/yogin/go-ec2/internal/config"
10+
"github.com/yogin/gosh/internal/config"
1111
)
1212

1313
type Status struct {

0 commit comments

Comments
 (0)