Changed module name.

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

View file

@ -5,10 +5,10 @@ import (
"encoding/hex"
"time"
"goweb/config"
"goweb/ent"
"goweb/ent/passwordtoken"
"goweb/ent/user"
"github.com/mikestefanello/pagoda/config"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/user"
"github.com/labstack/echo-contrib/session"
"github.com/labstack/echo/v4"

View file

@ -6,8 +6,8 @@ import (
"testing"
"time"
"goweb/ent/passwordtoken"
"goweb/ent/user"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/user"
"github.com/stretchr/testify/require"

View file

@ -14,9 +14,9 @@ import (
"github.com/labstack/echo/v4"
"github.com/labstack/gommon/log"
"goweb/config"
"goweb/ent"
_ "goweb/ent/runtime"
"github.com/mikestefanello/pagoda/config"
"github.com/mikestefanello/pagoda/ent"
_ "github.com/mikestefanello/pagoda/ent/runtime"
)
// Container contains all services used by the application and provides an easy way to handle dependency

View file

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

View file

@ -4,9 +4,9 @@ import (
"os"
"testing"
"goweb/config"
"goweb/ent"
"goweb/tests"
"github.com/mikestefanello/pagoda/config"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/tests"
"github.com/labstack/echo/v4"
)

View file

@ -10,8 +10,8 @@ import (
"runtime"
"sync"
"goweb/config"
"goweb/funcmap"
"github.com/mikestefanello/pagoda/config"
"github.com/mikestefanello/pagoda/funcmap"
)
// TemplateRenderer provides a flexible and easy to use method of rendering simple templates or complex sets of

View file

@ -4,7 +4,7 @@ import (
"io/ioutil"
"testing"
"goweb/config"
"github.com/mikestefanello/pagoda/config"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"