include username lol

This commit is contained in:
vilmibm 2024-09-01 21:04:38 +00:00
parent 51a2b386ea
commit c46e8806d0

View File

@ -63,6 +63,7 @@ type physicalData struct {
} }
type rsvpData struct { type rsvpData struct {
Username string
Being string Being string
PhysicalData *physicalData `yaml:"PhysicalData,omitempty"` PhysicalData *physicalData `yaml:"PhysicalData,omitempty"`
Freeform string Freeform string
@ -151,6 +152,7 @@ func rsvp(o opts) error {
} }
rd := rsvpData{ rd := rsvpData{
Username: o.Username,
Being: being, Being: being,
Freeform: freeform, Freeform: freeform,
PhysicalData: pd} PhysicalData: pd}