Fix local imports

This commit is contained in:
Victor Lacasse-Beaudoin 2023-06-02 16:08:08 -04:00
parent b6d3949a11
commit 412727bf9c
12 changed files with 16 additions and 16 deletions

View file

@ -5,8 +5,8 @@ import (
"fmt"
"log"
"git.agecem.com/agecem/bottin/v4/data"
"git.agecem.com/agecem/bottin/v4/handlers"
"git.agecem.com/agecem/bottin/data"
"git.agecem.com/agecem/bottin/handlers"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"github.com/spf13/cobra"

View file

@ -8,9 +8,9 @@ import (
"io"
"log"
"git.agecem.com/agecem/bottin/v4/data"
"git.agecem.com/agecem/bottin/v4/web"
"git.agecem.com/agecem/bottin/v4/web/webhandlers"
"git.agecem.com/agecem/bottin/data"
"git.agecem.com/agecem/bottin/web"
"git.agecem.com/agecem/bottin/web/webhandlers"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"github.com/spf13/cobra"

View file

@ -8,7 +8,7 @@ import (
"io/ioutil"
"net/http"
"git.agecem.com/agecem/bottin/v4/models"
"git.agecem.com/agecem/bottin/models"
"github.com/spf13/viper"
)

View file

@ -4,7 +4,7 @@ import (
"errors"
"fmt"
"git.agecem.com/agecem/bottin/v4/models"
"git.agecem.com/agecem/bottin/models"
_ "github.com/jackc/pgx/stdlib"
"github.com/jmoiron/sqlx"
"github.com/spf13/viper"

2
go.mod
View file

@ -1,4 +1,4 @@
module git.agecem.com/agecem/bottin/v4
module git.agecem.com/agecem/bottin
go 1.20

View file

@ -4,7 +4,7 @@ import (
"fmt"
"net/http"
"git.agecem.com/agecem/bottin/v4/data"
"git.agecem.com/agecem/bottin/data"
"github.com/labstack/echo/v4"
)

View file

@ -3,8 +3,8 @@ package handlers
import (
"net/http"
"git.agecem.com/agecem/bottin/v4/data"
"git.agecem.com/agecem/bottin/v4/models"
"git.agecem.com/agecem/bottin/data"
"git.agecem.com/agecem/bottin/models"
"github.com/labstack/echo/v4"
"github.com/spf13/viper"
)

View file

@ -3,7 +3,7 @@ package handlers
import (
"net/http"
"git.agecem.com/agecem/bottin/v4/data"
"git.agecem.com/agecem/bottin/data"
"github.com/labstack/echo/v4"
"github.com/spf13/viper"
)

View file

@ -3,7 +3,7 @@ package handlers
import (
"net/http"
"git.agecem.com/agecem/bottin/v4/data"
"git.agecem.com/agecem/bottin/data"
"github.com/labstack/echo/v4"
"github.com/spf13/viper"
)

View file

@ -3,7 +3,7 @@ package handlers
import (
"net/http"
"git.agecem.com/agecem/bottin/v4/data"
"git.agecem.com/agecem/bottin/data"
"github.com/labstack/echo/v4"
"github.com/spf13/viper"
)

View file

@ -1,6 +1,6 @@
package main
import "git.agecem.com/agecem/bottin/v4/cmd"
import "git.agecem.com/agecem/bottin/cmd"
func main() {
cmd.Execute()

View file

@ -4,7 +4,7 @@ import (
"fmt"
"net/http"
"git.agecem.com/agecem/bottin/v4/data"
"git.agecem.com/agecem/bottin/data"
"github.com/labstack/echo/v4"
)