package model import "gorm.io/gorm" type Poem struct { gorm.Model Id uint `gorm:"not null"` Content string }