chore(deps): update auth middleware and dependencies
- Add OptionalSessionMiddleware for non-required auth checks - Add GetUserID helper function - Update import paths in auth and main - Update docker-compose with frontend build configuration - Clean up go.mod and go.sum Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
119e3b7a6d
commit
ac04d7f346
6 changed files with 39 additions and 20 deletions
8
main.go
8
main.go
|
|
@ -5,10 +5,10 @@ import (
|
|||
"net/http"
|
||||
"os"
|
||||
|
||||
"github.com/writekitapp/writekit/internal/db"
|
||||
"github.com/writekitapp/writekit/internal/server"
|
||||
"github.com/writekitapp/writekit/internal/storage"
|
||||
"github.com/writekitapp/writekit/internal/tenant"
|
||||
"writekit/internal/db"
|
||||
"writekit/internal/server"
|
||||
"writekit/internal/storage"
|
||||
"writekit/internal/tenant"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue