git.sr.ht/~pingoo/stdx@v0.0.0-20240218134121-094174641f6e/auth/apikeys.go (about) 1 package auth 2 3 import ( 4 "time" 5 6 "git.sr.ht/~pingoo/stdx/uuid" 7 ) 8 9 type ApiKey struct { 10 ID uuid.UUID 11 CreatedAt time.Time 12 UpdatedAt time.Time 13 14 Name string 15 // ExpiresAt *time.Time 16 }