feat(tester): add UpdateParticipant endpoint

This commit is contained in:
Vyacheslav1557 2025-03-08 11:44:19 +05:00
parent e1720e7f82
commit dd87d63860
8 changed files with 45 additions and 1 deletions

View file

@ -19,3 +19,7 @@ type ParticipantsListItem struct {
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}
type ParticipantUpdate struct {
Name *string `json:"name"`
}