+surfers & athletes

This commit is contained in:
Miki 2023-12-30 10:39:53 +00:00
parent 5cef5cf409
commit 086be8ccc2
5 changed files with 67 additions and 16 deletions

7
backend/surfers.go Normal file
View file

@ -0,0 +1,7 @@
package main
type Athlete struct {
Firstname string `json:"firstname"`
Lastname string `json:"lastname"`
Category string `json:"category"`
}