You've already forked golang-base-project
11 lines
135 B
Go
11 lines
135 B
Go
package models
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Website struct {
|
|
gorm.Model
|
|
Title string
|
|
Description string
|
|
URL string
|
|
}
|