Compare commits

..

5 Commits

Author SHA1 Message Date
0bee12cb19 Set NWC URI in data-nwc 2024-12-15 21:56:26 +01:00
22691f8ebd Update .env.sample 2024-12-15 21:56:26 +01:00
92876c5011 users, sessions and wallets w/o authentication
* if a request has no session cookie, a new user, session and wallet is created and session cookie is set
* if a request has a session cookie and session exists in db, we will fetch user and wallet from db
* this means that we have a user and wallet during each render without any login required
2024-12-15 21:56:26 +01:00
430f015d8f Use nixos-24.11 as channel 2024-12-15 21:56:00 +01:00
55fdc879d8 Rename to magicwallet 2024-12-15 21:56:00 +01:00

View File

@ -3,7 +3,7 @@ package middleware
import ( import (
"net/http" "net/http"
"github.com/ekzyis/magicwallet/server/router" "github.com/ekzyis/magicwallet/server/router/context"
"github.com/labstack/echo/v4" "github.com/labstack/echo/v4"
) )