bottin/responses/post.go

18 lines
272 B
Go
Raw Permalink Normal View History

package responses
2024-02-15 19:32:50 -05:00
import "codeberg.org/vlbeaudoin/voki/v2"
2023-09-18 22:05:30 -04:00
type PostMembresResponse struct {
2024-02-15 19:32:50 -05:00
voki.ResponseWithError
Data struct {
MembresInserted int64
}
}
type PostProgrammesResponse struct {
2024-02-15 19:32:50 -05:00
voki.ResponseWithError
Data struct {
ProgrammesInserted int64
}
}