bottin/responses/post.go

18 lines
286 B
Go
Raw Permalink Normal View History

package responses
2023-09-18 21:05:30 -05:00
import "codeberg.org/vlbeaudoin/voki/response"
type PostMembresResponse struct {
2023-09-18 21:05:30 -05:00
response.ResponseWithError
Data struct {
MembresInserted int64
}
}
type PostProgrammesResponse struct {
2023-09-18 21:05:30 -05:00
response.ResponseWithError
Data struct {
ProgrammesInserted int64
}
}