package repos import "time" type User struct { ID int Username string Email string PasswordHash string Roles []string IsActive bool CreatedAt time.Time }