The mighty, self-hostable Git server for the command line 🍦
1package models 2 3import "time" 4 5// Handle represents a name handle. 6type Handle struct { 7 ID int64 `db:"id"` 8 Handle string `db:"handle"` 9 CreatedAt time.Time `db:"created_at"` 10 UpdatedAt time.Time `db:"updated_at"` 11}