| 3 | import "time" |
| 4 | |
| 5 | type CreateAPIKeyRequest struct { |
| 6 | Name string `json:"name" binding:"required"` |
| 7 | Scopes []string `json:"scopes" binding:"required"` |
| 8 | Owner string `json:"owner" binding:"required"` |
| 9 | ExpiresAt time.Time `json:"expires_at" binding:"required"` |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected