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