Initial structure for the votes

This commit is contained in:
2025-10-31 12:52:38 -04:00
parent a52e73a295
commit 47310997ec
5 changed files with 147 additions and 0 deletions

6
server/models/members.go Normal file
View File

@@ -0,0 +1,6 @@
package models
type Members struct {
Name string `json:"name"`
Email string `json:"email"`
}