Changed module name.

This commit is contained in:
mikestefanello 2022-01-01 10:44:18 -05:00
parent f3545473af
commit a986686247
59 changed files with 152 additions and 134 deletions

View file

@ -3,7 +3,7 @@ package routes
import (
"html/template"
"goweb/controller"
"github.com/mikestefanello/pagoda/controller"
"github.com/labstack/echo/v4"
)

View file

@ -1,8 +1,8 @@
package routes
import (
"goweb/context"
"goweb/controller"
"github.com/mikestefanello/pagoda/context"
"github.com/mikestefanello/pagoda/controller"
"github.com/labstack/echo/v4"
)

View file

@ -3,7 +3,7 @@ package routes
import (
"net/http"
"goweb/controller"
"github.com/mikestefanello/pagoda/controller"
"github.com/labstack/echo/v4"
)

View file

@ -4,11 +4,11 @@ import (
"fmt"
"strings"
"goweb/context"
"goweb/controller"
"goweb/ent"
"goweb/ent/user"
"goweb/msg"
"github.com/mikestefanello/pagoda/context"
"github.com/mikestefanello/pagoda/controller"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/ent/user"
"github.com/mikestefanello/pagoda/msg"
"github.com/labstack/echo/v4"
)

View file

@ -3,7 +3,7 @@ package routes
import (
"fmt"
"goweb/controller"
"github.com/mikestefanello/pagoda/controller"
"github.com/labstack/echo/v4"
)

View file

@ -4,11 +4,11 @@ import (
"fmt"
"strings"
"goweb/context"
"goweb/controller"
"goweb/ent"
"goweb/ent/user"
"goweb/msg"
"github.com/mikestefanello/pagoda/context"
"github.com/mikestefanello/pagoda/controller"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/ent/user"
"github.com/mikestefanello/pagoda/msg"
"github.com/labstack/echo/v4"
)

View file

@ -1,8 +1,8 @@
package routes
import (
"goweb/controller"
"goweb/msg"
"github.com/mikestefanello/pagoda/controller"
"github.com/mikestefanello/pagoda/msg"
"github.com/labstack/echo/v4"
)

View file

@ -1,10 +1,10 @@
package routes
import (
"goweb/context"
"goweb/controller"
"goweb/ent"
"goweb/msg"
"github.com/mikestefanello/pagoda/context"
"github.com/mikestefanello/pagoda/controller"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/msg"
"github.com/labstack/echo/v4"
)

View file

@ -1,11 +1,11 @@
package routes
import (
"goweb/context"
"goweb/controller"
"goweb/ent"
"goweb/ent/user"
"goweb/msg"
"github.com/mikestefanello/pagoda/context"
"github.com/mikestefanello/pagoda/controller"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/ent/user"
"github.com/mikestefanello/pagoda/msg"
"github.com/labstack/echo/v4"
)

View file

@ -3,10 +3,10 @@ package routes
import (
"net/http"
"goweb/config"
"goweb/controller"
"goweb/middleware"
"goweb/services"
"github.com/mikestefanello/pagoda/config"
"github.com/mikestefanello/pagoda/controller"
"github.com/mikestefanello/pagoda/middleware"
"github.com/mikestefanello/pagoda/services"
"github.com/gorilla/sessions"
"github.com/labstack/echo-contrib/session"

View file

@ -7,8 +7,8 @@ import (
"os"
"testing"
"goweb/config"
"goweb/services"
"github.com/mikestefanello/pagoda/config"
"github.com/mikestefanello/pagoda/services"
"github.com/PuerkitoBio/goquery"
"github.com/stretchr/testify/assert"

View file

@ -4,7 +4,7 @@ import (
"fmt"
"math/rand"
"goweb/controller"
"github.com/mikestefanello/pagoda/controller"
"github.com/labstack/echo/v4"
)