7 lines
129 B
Go
7 lines
129 B
Go
|
|
package db
|
||
|
|
|
||
|
|
type Houston struct {
|
||
|
|
ID int `json:"id" gorm:"autoIncrement:true"`
|
||
|
|
houstonID string `json:"houstonID"`
|
||
|
|
}
|