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,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"
)

View File

@ -7,10 +7,10 @@ import (
"fmt"
"log"
"goweb/ent/migrate"
"github.com/mikestefanello/pagoda/ent/migrate"
"goweb/ent/passwordtoken"
"goweb/ent/user"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/user"
"entgo.io/ent/dialect"
"entgo.io/ent/dialect/sql"

View File

@ -5,8 +5,9 @@ package ent
import (
"errors"
"fmt"
"goweb/ent/passwordtoken"
"goweb/ent/user"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/user"
"entgo.io/ent"
"entgo.io/ent/dialect/sql"

View File

@ -4,9 +4,11 @@ package enttest
import (
"context"
"goweb/ent"
"github.com/mikestefanello/pagoda/ent"
// required by schema hooks.
_ "goweb/ent/runtime"
_ "github.com/mikestefanello/pagoda/ent/runtime"
"entgo.io/ent/dialect/sql/schema"
)

View File

@ -5,7 +5,8 @@ package hook
import (
"context"
"fmt"
"goweb/ent"
"github.com/mikestefanello/pagoda/ent"
)
// The PasswordTokenFunc type is an adapter to allow the use of ordinary

View File

@ -5,12 +5,13 @@ package ent
import (
"context"
"fmt"
"goweb/ent/passwordtoken"
"goweb/ent/predicate"
"goweb/ent/user"
"sync"
"time"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/predicate"
"github.com/mikestefanello/pagoda/ent/user"
"entgo.io/ent"
)

View File

@ -4,11 +4,12 @@ package ent
import (
"fmt"
"goweb/ent/passwordtoken"
"goweb/ent/user"
"strings"
"time"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/user"
"entgo.io/ent/dialect/sql"
)

View File

@ -3,9 +3,10 @@
package passwordtoken
import (
"goweb/ent/predicate"
"time"
"github.com/mikestefanello/pagoda/ent/predicate"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
)

View File

@ -6,10 +6,11 @@ import (
"context"
"errors"
"fmt"
"goweb/ent/passwordtoken"
"goweb/ent/user"
"time"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/user"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
)

View File

@ -5,8 +5,9 @@ package ent
import (
"context"
"fmt"
"goweb/ent/passwordtoken"
"goweb/ent/predicate"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/predicate"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"

View File

@ -6,11 +6,12 @@ import (
"context"
"errors"
"fmt"
"goweb/ent/passwordtoken"
"goweb/ent/predicate"
"goweb/ent/user"
"math"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/predicate"
"github.com/mikestefanello/pagoda/ent/user"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"

View File

@ -6,11 +6,12 @@ import (
"context"
"errors"
"fmt"
"goweb/ent/passwordtoken"
"goweb/ent/predicate"
"goweb/ent/user"
"time"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/predicate"
"github.com/mikestefanello/pagoda/ent/user"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"

View File

@ -3,10 +3,11 @@
package runtime
import (
"goweb/ent/passwordtoken"
"goweb/ent/schema"
"goweb/ent/user"
"time"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/schema"
"github.com/mikestefanello/pagoda/ent/user"
)
// The init function reads all schema descriptors with runtime code

View File

@ -5,8 +5,8 @@ import (
"strings"
"time"
ge "goweb/ent"
"goweb/ent/hook"
ge "github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/ent/hook"
"entgo.io/ent"
"entgo.io/ent/schema/edge"

View File

@ -4,10 +4,11 @@ package ent
import (
"fmt"
"goweb/ent/user"
"strings"
"time"
"github.com/mikestefanello/pagoda/ent/user"
"entgo.io/ent/dialect/sql"
)

View File

@ -3,9 +3,10 @@
package user
import (
"goweb/ent/predicate"
"time"
"github.com/mikestefanello/pagoda/ent/predicate"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
)

View File

@ -6,10 +6,11 @@ import (
"context"
"errors"
"fmt"
"goweb/ent/passwordtoken"
"goweb/ent/user"
"time"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/user"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"
)

View File

@ -5,8 +5,9 @@ package ent
import (
"context"
"fmt"
"goweb/ent/predicate"
"goweb/ent/user"
"github.com/mikestefanello/pagoda/ent/predicate"
"github.com/mikestefanello/pagoda/ent/user"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"

View File

@ -7,11 +7,12 @@ import (
"database/sql/driver"
"errors"
"fmt"
"goweb/ent/passwordtoken"
"goweb/ent/predicate"
"goweb/ent/user"
"math"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/predicate"
"github.com/mikestefanello/pagoda/ent/user"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"
"entgo.io/ent/schema/field"

View File

@ -5,9 +5,10 @@ package ent
import (
"context"
"fmt"
"goweb/ent/passwordtoken"
"goweb/ent/predicate"
"goweb/ent/user"
"github.com/mikestefanello/pagoda/ent/passwordtoken"
"github.com/mikestefanello/pagoda/ent/predicate"
"github.com/mikestefanello/pagoda/ent/user"
"entgo.io/ent/dialect/sql"
"entgo.io/ent/dialect/sql/sqlgraph"

View File

@ -6,7 +6,7 @@ import (
"reflect"
"strings"
"goweb/config"
"github.com/mikestefanello/pagoda/config"
"github.com/Masterminds/sprig"
"github.com/labstack/gommon/random"

View File

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

2
go.mod
View File

@ -1,4 +1,4 @@
module goweb
module github.com/mikestefanello/pagoda
go 1.17

View File

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

View File

@ -9,8 +9,8 @@ import (
"os/signal"
"time"
"goweb/routes"
"goweb/services"
"github.com/mikestefanello/pagoda/routes"
"github.com/mikestefanello/pagoda/services"
)
func main() {

View File

@ -3,10 +3,10 @@ package middleware
import (
"net/http"
"goweb/context"
"goweb/ent"
"goweb/msg"
"goweb/services"
"github.com/mikestefanello/pagoda/context"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/msg"
"github.com/mikestefanello/pagoda/services"
"github.com/labstack/echo/v4"
)

View File

@ -5,9 +5,9 @@ import (
"net/http"
"testing"
"goweb/context"
"goweb/ent"
"goweb/tests"
"github.com/mikestefanello/pagoda/context"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/tests"
"github.com/stretchr/testify/require"

View File

@ -5,7 +5,7 @@ import (
"net/http"
"time"
"goweb/context"
"github.com/mikestefanello/pagoda/context"
"github.com/eko/gocache/v2/cache"
"github.com/eko/gocache/v2/marshaler"

View File

@ -6,7 +6,7 @@ import (
"testing"
"time"
"goweb/tests"
"github.com/mikestefanello/pagoda/tests"
"github.com/stretchr/testify/require"

View File

@ -4,9 +4,9 @@ import (
"net/http"
"strconv"
"goweb/context"
"goweb/ent"
"goweb/ent/user"
"github.com/mikestefanello/pagoda/context"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/ent/user"
"github.com/labstack/echo/v4"
)

View File

@ -4,9 +4,9 @@ import (
"fmt"
"testing"
"goweb/context"
"goweb/ent"
"goweb/tests"
"github.com/mikestefanello/pagoda/context"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/tests"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

View File

@ -5,7 +5,7 @@ import (
"fmt"
"testing"
"goweb/tests"
"github.com/mikestefanello/pagoda/tests"
"github.com/labstack/echo/v4"

View File

@ -4,10 +4,10 @@ import (
"os"
"testing"
"goweb/config"
"goweb/ent"
"goweb/services"
"goweb/tests"
"github.com/mikestefanello/pagoda/config"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/services"
"github.com/mikestefanello/pagoda/tests"
)
var (

View File

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

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"
)

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"

View File

@ -10,7 +10,7 @@ import (
"testing"
"time"
"goweb/ent"
"github.com/mikestefanello/pagoda/ent"
"github.com/go-playground/assert/v2"
"github.com/stretchr/testify/require"