func CreateListing(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
    // Get listing to add from request body
    listing := models.Listing{}
    err := ParseJSONFromBody(r, &listing)
    if err != nil {