12 lines
152 B
Go
12 lines
152 B
Go
|
package models
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type User struct {
|
||
|
Id int
|
||
|
Name string
|
||
|
CreatedAt time.Time
|
||
|
LnPubkey string
|
||
|
NostrPubkey string
|
||
|
}
|