Skip to content

Commit

Permalink
updated -- org
Browse files Browse the repository at this point in the history
  • Loading branch information
hotbrainy committed Dec 19, 2024
1 parent 5931d4c commit 87241a4
Show file tree
Hide file tree
Showing 17 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DappsterOS-Common

[![Go Reference](https://pkg.go.dev/badge/github.com/dappster-io/DappsterOS-Common.svg)](https://pkg.go.dev/github.com/dappster-io/DappsterOS-Common) [![Go Report Card](https://goreportcard.com/badge/github.com/dappster-io/DappsterOS-Common)](https://goreportcard.com/report/github.com/dappster-io/DappsterOS-Common) [![codecov](https://codecov.io/github/dappster-io/DappsterOS-Common/branch/main/graph/badge.svg?token=KDJ5KAFX2Q)](https://codecov.io/github/dappster-io/DappsterOS-Common)
[![Go Reference](https://pkg.go.dev/badge/github.com/dappsteros-io/DappsterOS-Common.svg)](https://pkg.go.dev/github.com/dappsteros-io/DappsterOS-Common) [![Go Report Card](https://goreportcard.com/badge/github.com/dappsteros-io/DappsterOS-Common)](https://goreportcard.com/report/github.com/dappsteros-io/DappsterOS-Common) [![codecov](https://codecov.io/github/dappsteros-io/DappsterOS-Common/branch/main/graph/badge.svg?token=KDJ5KAFX2Q)](https://codecov.io/github/dappsteros-io/DappsterOS-Common)

Common structs and functions for DappsterOS
4 changes: 2 additions & 2 deletions external/app_manage.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"strings"
"time"

"github.com/dappster-io/DappsterOS-Common/model"
http2 "github.com/dappster-io/DappsterOS-Common/utils/http"
"github.com/dappsteros-io/DappsterOS-Common/model"
http2 "github.com/dappsteros-io/DappsterOS-Common/utils/http"
"github.com/tidwall/gjson"
)

Expand Down
2 changes: 1 addition & 1 deletion external/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"time"

http2 "github.com/dappster-io/DappsterOS-Common/utils/http"
http2 "github.com/dappsteros-io/DappsterOS-Common/utils/http"
)

func getAddress(addressFile string) (string, error) {
Expand Down
4 changes: 2 additions & 2 deletions external/gateway.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"strings"
"time"

"github.com/dappster-io/DappsterOS-Common/model"
http2 "github.com/dappster-io/DappsterOS-Common/utils/http"
"github.com/dappsteros-io/DappsterOS-Common/model"
http2 "github.com/dappsteros-io/DappsterOS-Common/utils/http"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion external/notify.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"time"

http2 "github.com/dappster-io/DappsterOS-Common/utils/http"
http2 "github.com/dappsteros-io/DappsterOS-Common/utils/http"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion external/share.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"time"

http2 "github.com/dappster-io/DappsterOS-Common/utils/http"
http2 "github.com/dappsteros-io/DappsterOS-Common/utils/http"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion external/user_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"path/filepath"
"time"

"github.com/dappster-io/DappsterOS-Common/utils/jwt"
"github.com/dappsteros-io/DappsterOS-Common/utils/jwt"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/dappster-io/DappsterOS-Common
module github.com/dappsteros-io/DappsterOS-Common

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion utils/command/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"path/filepath"
"strings"

exec2 "github.com/dappster-io/DappsterOS-Common/utils/exec"
exec2 "github.com/dappsteros-io/DappsterOS-Common/utils/exec"
)

// Deprecated: This method is not safe, sould have ensure input.
Expand Down
2 changes: 1 addition & 1 deletion utils/file/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"strconv"
"strings"

"github.com/dappster-io/DappsterOS-Common/utils/logger"
"github.com/dappsteros-io/DappsterOS-Common/utils/logger"
"github.com/mholt/archiver/v3"
"go.uber.org/zap"
)
Expand Down
2 changes: 1 addition & 1 deletion utils/idevice/os_release.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package idevice

import (
"github.com/dappster-io/DappsterOS-Common/utils/file"
"github.com/dappsteros-io/DappsterOS-Common/utils/file"
)

func GetOSRelease(name []string) (map[string]string, error) {
Expand Down
4 changes: 2 additions & 2 deletions utils/jwt/jwt_helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"net/http"
"strconv"

"github.com/dappster-io/DappsterOS-Common/model"
"github.com/dappster-io/DappsterOS-Common/utils/common_err"
"github.com/dappsteros-io/DappsterOS-Common/model"
"github.com/dappsteros-io/DappsterOS-Common/utils/common_err"
echojwt "github.com/labstack/echo-jwt/v4"
"github.com/labstack/echo/v4"
echo_middleware "github.com/labstack/echo/v4/middleware"
Expand Down
6 changes: 3 additions & 3 deletions utils/jwt/jwt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"net/http/httptest"
"testing"

"github.com/dappster-io/DappsterOS-Common/model"
"github.com/dappster-io/DappsterOS-Common/utils/common_err"
"github.com/dappster-io/DappsterOS-Common/utils/jwt"
"github.com/dappsteros-io/DappsterOS-Common/model"
"github.com/dappsteros-io/DappsterOS-Common/utils/common_err"
"github.com/dappsteros-io/DappsterOS-Common/utils/jwt"
"github.com/labstack/echo/v4"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
Expand Down
2 changes: 1 addition & 1 deletion utils/logger/log_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package logger_test
import (
"testing"

"github.com/dappster-io/DappsterOS-Common/utils/logger"
"github.com/dappsteros-io/DappsterOS-Common/utils/logger"
"github.com/stretchr/testify/assert"
"go.uber.org/zap/zapcore"
)
Expand Down
2 changes: 1 addition & 1 deletion utils/port/port_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/dappster-io/DappsterOS-Common/utils/port"
"github.com/dappsteros-io/DappsterOS-Common/utils/port"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion utils/random/random_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package random_test
import (
"testing"

"github.com/dappster-io/DappsterOS-Common/utils/random"
"github.com/dappsteros-io/DappsterOS-Common/utils/random"
)

func TestString(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion utils/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"gopkg.in/ini.v1"

"github.com/dappster-io/DappsterOS-Common/utils/file"
"github.com/dappsteros-io/DappsterOS-Common/utils/file"
_ "github.com/mattn/go-sqlite3" // nolint
)

Expand Down

0 comments on commit 87241a4

Please # to comment.