package models import ( "time" ) type User struct { ID int Username string Password string CreatedAt time.Time UpdatedAt time.Time }