A vibe coded tangled fork which supports pijul.
at f7d60daa32e0c0f7e42a3eb7a3b2a9ac9b42d217 16 lines 260 B view raw
1package models 2 3import ( 4 "time" 5) 6 7type Email struct { 8 ID int64 9 Did string 10 Address string 11 Verified bool 12 Primary bool 13 VerificationCode string 14 LastSent *time.Time 15 CreatedAt time.Time 16}