package handlers import ( "html/template" "synlotto-website/models" ) var Tmpl = template.Must(template.ParseFiles( "templates/layout.html", "templates/index.html", "templates/new_draw.html", "templates/new_ticket.html", )) var Draws []models.Draw var MyTickets []models.MyTicket