| 15 | } |
| 16 | |
| 17 | type APIKeyInfo struct { |
| 18 | ID string `json:"id"` |
| 19 | Name string `json:"name"` |
| 20 | Permissions []string `json:"permissions"` |
| 21 | CreatedAt time.Time `json:"created_at"` |
| 22 | ExpiresAt *time.Time `json:"expires_at,omitempty"` |
| 23 | LastUsed *time.Time `json:"last_used,omitempty"` |
| 24 | } |
| 25 | |
| 26 | type InMemoryAPIKeyStore struct { |
| 27 | keys map[string]*APIKeyInfo |
nothing calls this directly
no outgoing calls
no test coverage detected