package model import "gorm.io/gorm" type UserNotes struct { Username string `json:"username"` Content string `json:"content"` gorm.Model }