10 lines
166 B
Go
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"`
|
||
|
}
|