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

@ -5,8 +5,8 @@ import (
"fmt"
"net/http"
"goweb/middleware"
"goweb/services"
"github.com/mikestefanello/pagoda/middleware"
"github.com/mikestefanello/pagoda/services"
"github.com/eko/gocache/v2/marshaler"

View file

@ -8,11 +8,11 @@ import (
"os"
"testing"
"goweb/config"
"goweb/htmx"
"goweb/middleware"
"goweb/services"
"goweb/tests"
"github.com/mikestefanello/pagoda/config"
"github.com/mikestefanello/pagoda/htmx"
"github.com/mikestefanello/pagoda/middleware"
"github.com/mikestefanello/pagoda/services"
"github.com/mikestefanello/pagoda/tests"
"github.com/eko/gocache/v2/store"

View file

@ -3,7 +3,7 @@ package controller
import (
"testing"
"goweb/tests"
"github.com/mikestefanello/pagoda/tests"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

View file

@ -5,10 +5,10 @@ import (
"net/http"
"time"
"goweb/context"
"goweb/ent"
"goweb/htmx"
"goweb/msg"
"github.com/mikestefanello/pagoda/context"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/htmx"
"github.com/mikestefanello/pagoda/msg"
echomw "github.com/labstack/echo/v4/middleware"

View file

@ -4,9 +4,9 @@ import (
"net/http"
"testing"
"goweb/context"
"goweb/msg"
"goweb/tests"
"github.com/mikestefanello/pagoda/context"
"github.com/mikestefanello/pagoda/msg"
"github.com/mikestefanello/pagoda/tests"
echomw "github.com/labstack/echo/v4/middleware"
"github.com/stretchr/testify/assert"

View file

@ -4,7 +4,7 @@ import (
"fmt"
"testing"
"goweb/tests"
"github.com/mikestefanello/pagoda/tests"
"github.com/stretchr/testify/assert"
)