package api import ( "atlas9.dev/c/core" "atlas9.dev/c/core/iam" ) const ( Path_Users_GetByEmail = "POST /Users_GetByEmail" Path_Users_List = "POST /Users_List" Path_Users_ListByTenant = "POST /Users_ListByTenant" ) type Users_GetByEmailReq struct { Email string } type Users_GetByEmailRes struct { User iam.User } type Users_ListReq struct { Page core.PageReq } type Users_ListRes struct { Page core.Page[iam.User] } type Users_ListByTenantReq struct { Tenant core.ID Page core.PageReq } type Users_ListByTenantRes struct { Page core.Page[iam.User] } func (r *Users_GetByEmailReq) Prepare() error { return nil } func (r *Users_ListReq) Prepare() error { return nil } func (r *Users_ListByTenantReq) Prepare() error { return nil }