feat: next

This commit is contained in:
2025-05-12 11:30:33 -04:00
parent cdeaa13d92
commit 07cec78aa5
36 changed files with 1553 additions and 327 deletions

View File

@ -1,6 +1,6 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.28.0
// sqlc v1.29.0
package sqlc
@ -8,6 +8,21 @@ import (
"time"
)
type Credential struct {
CredID string
CredPublicKey []byte
SignCount int64
Transports *string
UserVerified *bool
BackupEligible *bool
BackupState *bool
AttestationObject []byte
AttestationClientData []byte
CreatedAt time.Time
LastUsed time.Time
UserID int64
}
type File struct {
ID int64
Name string
@ -34,4 +49,5 @@ type User struct {
Username string
Password string
ProfilePictureID *int64
WebauthnID string
}