mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-11 13:29:12 +00:00
16 lines
264 B
Go
16 lines
264 B
Go
|
package models
|
||
|
|
||
|
type CreatePasskeyData struct {
|
||
|
Address string
|
||
|
Handle string
|
||
|
Name string
|
||
|
Challenge string
|
||
|
CreationBlock string
|
||
|
}
|
||
|
|
||
|
type CreateProfileData struct {
|
||
|
TurnstileSiteKey string
|
||
|
FirstNumber int
|
||
|
LastNumber int
|
||
|
}
|