Updating to latest pagoda release

This commit is contained in:
Cam Zalewski 2026-05-20 08:00:26 +00:00
parent 05cf6c8318
commit 4d5d45d1a4
111 changed files with 358 additions and 1535 deletions

View file

@ -5,12 +5,12 @@ import (
"net/http"
"strconv"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/pkg/context"
"github.com/mikestefanello/pagoda/pkg/log"
"github.com/mikestefanello/pagoda/pkg/msg"
"github.com/mikestefanello/pagoda/pkg/routenames"
"github.com/mikestefanello/pagoda/pkg/services"
"github.com/camzawacki/personal-site/ent"
"github.com/camzawacki/personal-site/pkg/context"
"github.com/camzawacki/personal-site/pkg/log"
"github.com/camzawacki/personal-site/pkg/msg"
"github.com/camzawacki/personal-site/pkg/routenames"
"github.com/camzawacki/personal-site/pkg/services"
"github.com/labstack/echo/v4"
)

View file

@ -6,9 +6,9 @@ import (
"net/http"
"testing"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/pkg/context"
"github.com/mikestefanello/pagoda/pkg/tests"
"github.com/camzawacki/personal-site/ent"
"github.com/camzawacki/personal-site/pkg/context"
"github.com/camzawacki/personal-site/pkg/tests"
"github.com/stretchr/testify/require"

View file

@ -4,7 +4,7 @@ import (
"testing"
"time"
"github.com/mikestefanello/pagoda/pkg/tests"
"github.com/camzawacki/personal-site/pkg/tests"
"github.com/stretchr/testify/assert"
)

View file

@ -2,8 +2,8 @@ package middleware
import (
"github.com/labstack/echo/v4"
"github.com/mikestefanello/pagoda/config"
"github.com/mikestefanello/pagoda/pkg/context"
"github.com/camzawacki/personal-site/config"
"github.com/camzawacki/personal-site/pkg/context"
)
// Config stores the configuration in the request so it can be accessed by the ui.

View file

@ -3,9 +3,9 @@ package middleware
import (
"testing"
"github.com/mikestefanello/pagoda/config"
"github.com/mikestefanello/pagoda/pkg/context"
"github.com/mikestefanello/pagoda/pkg/tests"
"github.com/camzawacki/personal-site/config"
"github.com/camzawacki/personal-site/pkg/context"
"github.com/camzawacki/personal-site/pkg/tests"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

View file

@ -5,9 +5,9 @@ import (
"net/http"
"strconv"
"github.com/mikestefanello/pagoda/ent"
"github.com/mikestefanello/pagoda/ent/user"
"github.com/mikestefanello/pagoda/pkg/context"
"github.com/camzawacki/personal-site/ent"
"github.com/camzawacki/personal-site/ent/user"
"github.com/camzawacki/personal-site/pkg/context"
"github.com/labstack/echo/v4"
)

View file

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

View file

@ -6,7 +6,7 @@ import (
"time"
"github.com/labstack/echo/v4"
"github.com/mikestefanello/pagoda/pkg/log"
"github.com/camzawacki/personal-site/pkg/log"
)
// SetLogger initializes a logger for the current request and stores it in the context.

View file

@ -7,8 +7,8 @@ import (
"github.com/labstack/echo/v4"
echomw "github.com/labstack/echo/v4/middleware"
"github.com/mikestefanello/pagoda/pkg/log"
"github.com/mikestefanello/pagoda/pkg/tests"
"github.com/camzawacki/personal-site/pkg/log"
"github.com/camzawacki/personal-site/pkg/tests"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/assert"

View file

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

View file

@ -4,7 +4,7 @@ import (
"github.com/gorilla/context"
"github.com/gorilla/sessions"
"github.com/labstack/echo/v4"
"github.com/mikestefanello/pagoda/pkg/session"
"github.com/camzawacki/personal-site/pkg/session"
)
// Session sets the session storage in the request context

View file

@ -4,8 +4,8 @@ import (
"testing"
"github.com/gorilla/sessions"
"github.com/mikestefanello/pagoda/pkg/session"
"github.com/mikestefanello/pagoda/pkg/tests"
"github.com/camzawacki/personal-site/pkg/session"
"github.com/camzawacki/personal-site/pkg/tests"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)