recommender/internal/handler/http/request/applications.go
2024-11-08 02:25:15 +08:00

12 lines
252 B
Go

package request
import "leafdev.top/Ecosystem/recommender/internal/schema"
type ApplicationId struct {
ApplicationId schema.EntityId `json:"application_id" uri:"application_id"`
}
type ApplicationCreateRequest struct {
Name string `json:"name"`
}