* 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
10 lines
135 B
Go
10 lines
135 B
Go
package models
|
|
|
|
type Wallet struct {
|
|
Id int
|
|
WalletPubkey string
|
|
Secret string
|
|
Msats int
|
|
UserId int
|
|
}
|