package main import ( "fmt" "github.com/tsuru/tsuru.auth" ) func main() { user := &auth.User{ Email: "[email protected]", PasswordHash: "HASHED_PASSWORD", Teams: []string{"default", "admin"}, } fmt.Println(user.Email) // prints "[email protected]" fmt.Println(user.Teams) // prints "[default admin]" }In this example, we create a new user struct and initialize its fields with sample data. We then print out the user's email and team list using the fmt package. Overall, this package is useful for managing user authentication and authorization in Tsuru-based applications.