7 lines
84 B
Go
7 lines
84 B
Go
|
package models
|
||
|
|
||
|
type Tag struct {
|
||
|
ID int `db:"id"`
|
||
|
Text string `db:"text"`
|
||
|
}
|