Skip to content

Commit

Permalink
fixing module name (fasten-onprem vs fastenhealth-onprem)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Aug 28, 2023
1 parent 011cfa3 commit 0a9eb88
Show file tree
Hide file tree
Showing 92 changed files with 180 additions and 180 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/tmp/lock,sharing=locked \
#########################################################################################################
FROM golang:1.18 as backend-build

WORKDIR /go/src/github.com/fastenhealth/fastenhealth-onprem
WORKDIR /go/src/github.com/fastenhealth/fasten-onprem
COPY . .

RUN --mount=type=cache,target=/tmp/lock,sharing=locked \
Expand Down
10 changes: 5 additions & 5 deletions backend/cmd/fasten/fasten.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"encoding/json"
"fmt"
"github.com/analogj/go-util/utils"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/errors"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/version"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/web"
"github.com/fastenhealth/fasten-onprem/backend/pkg/config"
"github.com/fastenhealth/fasten-onprem/backend/pkg/errors"
"github.com/fastenhealth/fasten-onprem/backend/pkg/version"
"github.com/fastenhealth/fasten-onprem/backend/pkg/web"
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
"io"
Expand Down Expand Up @@ -48,7 +48,7 @@ func main() {
},
Before: func(c *cli.Context) error {

packagrUrl := "github.com/fastenhealth/fastenhealth-onprem"
packagrUrl := "github.com/fastenhealth/fasten-onprem"

versionInfo := fmt.Sprintf("%s.%s-%s", goos, goarch, version.VERSION)

Expand Down
2 changes: 1 addition & 1 deletion backend/pkg/auth/jwt_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package auth
import (
"errors"
"fmt"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
"github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/golang-jwt/jwt/v4"
"strings"
"time"
Expand Down
4 changes: 2 additions & 2 deletions backend/pkg/auth/jwt_utils_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package auth_test

import (
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/auth"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
"github.com/fastenhealth/fasten-onprem/backend/pkg/auth"
"github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/stretchr/testify/require"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion backend/pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package config
import (
"fmt"
"github.com/analogj/go-util/utils"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/errors"
"github.com/fastenhealth/fasten-onprem/backend/pkg/errors"
"github.com/spf13/viper"
"log"
"os"
Expand Down
4 changes: 2 additions & 2 deletions backend/pkg/database/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package database

import (
"context"
"github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fasten-onprem/backend/pkg/models"
sourcePkg "github.com/fastenhealth/fasten-sources/clients/models"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
"github.com/google/uuid"
)

Expand Down
82 changes: 41 additions & 41 deletions backend/pkg/database/mock/mock_database.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions backend/pkg/database/sqlite_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fasten-onprem/backend/pkg/config"
"github.com/fastenhealth/fasten-onprem/backend/pkg/models"
databaseModel "github.com/fastenhealth/fasten-onprem/backend/pkg/models/database"
"github.com/fastenhealth/fasten-onprem/backend/pkg/utils"
sourceModel "github.com/fastenhealth/fasten-sources/clients/models"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
databaseModel "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models/database"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/utils"
"github.com/gin-gonic/gin"
"github.com/glebarez/sqlite"
"github.com/google/uuid"
Expand Down
6 changes: 3 additions & 3 deletions backend/pkg/database/sqlite_repository_graph.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"context"
"fmt"
"github.com/dominikbraun/graph"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/utils"
"github.com/fastenhealth/fasten-onprem/backend/pkg"
"github.com/fastenhealth/fasten-onprem/backend/pkg/models"
"github.com/fastenhealth/fasten-onprem/backend/pkg/utils"
"golang.org/x/exp/slices"
"log"
"strings"
Expand Down
Loading

0 comments on commit 0a9eb88

Please sign in to comment.