Skip to content

Instantly share code, notes, and snippets.

@christianberg
Created May 31, 2010 14:00
Show Gist options
  • Save christianberg/419856 to your computer and use it in GitHub Desktop.
Save christianberg/419856 to your computer and use it in GitHub Desktop.
(ns compojureongae.core
(:gen-class :extends javax.servlet.http.HttpServlet)
(:use compojure.core
[ring.util.servlet :only [defservice]]
[ring.util.response :only [redirect]]
[hiccup.core :only [h html]]
[hiccup.page-helpers :only [doctype include-css link-to xhtml-tag]]
[hiccup.form-helpers :only [form-to text-area text-field]])
(:import (com.google.appengine.api.datastore Query))
(:require [compojure.route :as route]
[appengine.datastore.core :as ds]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment