This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Hochzeit/planner/besucher.go
HuskyTeufel 227ddd81aa Revert "Umgeschrieben auf gorilla"
This reverts commit 318442cfaf.
2022-01-17 16:08:13 +01:00

9 lines
163 B
Go

package planner
type Besucher struct {
ID string `json:"id"`
Name string `json:"name"`
Message string `json:"message"`
Come bool `json:"come"`
}