Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

Commit

Permalink
🐛 Fix own package imports (#10)
Browse files Browse the repository at this point in the history
The module name differed from the imports used which caused go to always import the own package from GitHub and ignoring the local one.
  • Loading branch information
geigi authored Feb 22, 2022
1 parent 7b0bbdb commit 6694b5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ go 1.15

require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/factorycampus/radau v0.0.0-20181018113934-aa422cae6f27
github.com/gin-contrib/cors v1.3.1
github.com/gin-gonic/gin v1.7.2
github.com/go-pg/migrations v6.5.0+incompatible
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"os"
"strings"

"github.com/factorycampus/radau/api"
"github.com/factorycampus/radau/migrations"
"github.com/FactoryCampus/radau/api"
"github.com/FactoryCampus/radau/migrations"
"github.com/gin-contrib/cors"
"github.com/gin-gonic/gin"
"github.com/go-pg/pg"
Expand Down

0 comments on commit 6694b5d

Please sign in to comment.