package db import ( "github.com/jinzhu/gorm" ) // User describe the user model type User struct { gorm.Model Username string }