go-recipe-book/pkg/db/units.go
2024-11-09 19:50:05 -08:00

10 lines
166 B
Go

package db
type UnitsID uint64
type Units struct {
ID UnitsID `db:"rowid"`
Name string `db:"name"`
Abbreviation string `db:"abbreviation"`
}