2024-06-06 01:40:56 -04:00
|
|
|
package main
|
2023-09-05 16:15:22 -04:00
|
|
|
|
2024-02-15 19:32:50 -05:00
|
|
|
import "codeberg.org/vlbeaudoin/voki/v2"
|
2023-09-18 22:05:30 -04:00
|
|
|
|
2024-06-06 01:40:56 -04:00
|
|
|
type GetHealthResponse struct {
|
|
|
|
voki.ResponseWithError
|
|
|
|
}
|
|
|
|
|
|
|
|
type ListMembresResponse struct {
|
|
|
|
voki.ResponseWithError
|
|
|
|
Data struct {
|
|
|
|
Membres []Membre
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-05 16:15:22 -04:00
|
|
|
type PostMembresResponse struct {
|
2024-02-15 19:32:50 -05:00
|
|
|
voki.ResponseWithError
|
2023-09-05 16:15:22 -04:00
|
|
|
Data struct {
|
|
|
|
MembresInserted int64
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type PostProgrammesResponse struct {
|
2024-02-15 19:32:50 -05:00
|
|
|
voki.ResponseWithError
|
2023-09-05 16:15:22 -04:00
|
|
|
Data struct {
|
|
|
|
ProgrammesInserted int64
|
|
|
|
}
|
|
|
|
}
|