package site import "net/http" func getExpiredCookie(name string) http.Cookie { return http.Cookie{ Name: name, Path: "/", MaxAge: -1, // expire the cookie } }