WIP: EOL
This commit is contained in:
parent
7ed1e05284
commit
49e05cac10
23 changed files with 613 additions and 253 deletions
|
|
@ -4,6 +4,11 @@ import "github.com/google/uuid"
|
|||
|
||||
type AttendeeID uuid.UUID
|
||||
|
||||
func NewAttendeeID() AttendeeID {
|
||||
id := uuid.Must(uuid.NewV7())
|
||||
return AttendeeID(id)
|
||||
}
|
||||
|
||||
type Attendee struct {
|
||||
ID AttendeeID
|
||||
DateID DateID
|
||||
|
|
|
|||
Reference in a new issue