Skip to content

Commit 3382f1f

Browse files
committed
fix: update package name to github.com/manasky/cryptomeme
1 parent f12d2a4 commit 3382f1f

33 files changed

Lines changed: 63 additions & 63 deletions

api/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package api
22

33
import (
44
"context"
5-
"cryptolist/common"
5+
"github.com/manasky/cryptomeme/common"
66
)
77

88
type API interface {

api/coingeco.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ package api
22

33
import (
44
"context"
5-
"cryptolist/common"
65
"encoding/json"
76
"errors"
87
"fmt"
8+
"github.com/manasky/cryptomeme/common"
99
"io/ioutil"
1010
"net/http"
1111
"net/url"

api/server.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ package api
22

33
import (
44
"context"
5-
"cryptolist/database"
6-
"cryptolist/meme"
75
"encoding/json"
6+
"github.com/manasky/cryptomeme/database"
7+
"github.com/manasky/cryptomeme/meme"
88
"log"
99
"net/http"
1010
"strconv"

database/database.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package database
22

33
import (
44
"context"
5-
"cryptolist/common"
5+
"github.com/manasky/cryptomeme/common"
66
"time"
77
)
88

database/ent.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ package database
22

33
import (
44
"context"
5-
"cryptolist/common"
6-
"cryptolist/internal/ent"
7-
"cryptolist/internal/ent/marketchart"
8-
"cryptolist/internal/ent/markets"
95
"entgo.io/ent/dialect/sql"
106
"fmt"
7+
"github.com/manasky/cryptomeme/common"
8+
"github.com/manasky/cryptomeme/internal/ent"
9+
"github.com/manasky/cryptomeme/internal/ent/marketchart"
10+
"github.com/manasky/cryptomeme/internal/ent/markets"
1111
"time"
1212
)
1313

database/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package database
22

33
import (
44
"context"
5-
"cryptolist/common"
65
"errors"
6+
"github.com/manasky/cryptomeme/common"
77
"time"
88
)
99

database/memory.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package database
22

33
import (
44
"context"
5-
"cryptolist/common"
65
"errors"
6+
"github.com/manasky/cryptomeme/common"
77
"time"
88
)
99

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module cryptolist
1+
module github.com/manasky/cryptomeme
22

33
go 1.16
44

internal/ent/client.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/ent/ent.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)