Ajouter GetMembreResponse

This commit is contained in:
Victor Lacasse-Beaudoin 2023-06-03 20:41:13 -04:00
parent f7981715db
commit d6573287f4
2 changed files with 33 additions and 14 deletions

10
responses/responses.go Normal file
View file

@ -0,0 +1,10 @@
package responses
import bottinmodels "git.agecem.com/agecem/bottin/v5/models"
type GetMembreResponse struct {
Message string `json:"message"`
Data struct {
Membre bottinmodels.Membre
} `json:"data"`
}