2024-03-31 17:46:04 -07:00
|
|
|
package domain
|
|
|
|
|
|
|
|
type HelloBodyRequest struct {
|
|
|
|
Name string `json:"name" validate:"required"`
|
2024-04-03 16:09:31 -07:00
|
|
|
}
|
|
|
|
|
2024-04-04 15:29:39 -07:00
|
|
|
type UpdateScopesRequest struct {
|
2024-04-05 17:49:47 -07:00
|
|
|
Username string `json:"username"`
|
2024-04-03 16:09:31 -07:00
|
|
|
Scopes []string `json:"scopes" validate:"required"`
|
|
|
|
}
|