go #49

Merged
niggl merged 96 commits from go into main 2024-12-12 15:11:31 +00:00
2 changed files with 108 additions and 2 deletions
Showing only changes of commit 561e7151c6 - Show all commits

View File

@ -13,6 +13,8 @@ type RunnerWithDonations struct {
Group Group `json:"group"`
Distance int `json:"distance"`
DistanceDonations []DistanceDonation `json:"distance_donations"`
TotalPerDistance int `json:"total_per_distance"`
TotalDonations int `json:"total_donations"`
}
type DistanceDonation struct {
@ -33,4 +35,6 @@ type Donor struct {
type CertificateTemplateOptions struct {
Runners []RunnerWithDonations `json:"runners"`
EventName string `json:"event_name"`
Footer string `json:"footer"`
CurrencySymbol string `json:"currency_symbol"`
}

File diff suppressed because one or more lines are too long