Skip to content

Commit

Permalink
renamed to cljs-csvc
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul M Bauer committed Nov 13, 2011
1 parent 25f674f commit 5913632
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Procfile
@@ -1 +1 @@
web: lein run -m cs-cs.http.entry
web: lein run -m cljs-csvc.http.entry
2 changes: 1 addition & 1 deletion src/cs_cs/compiler.clj → src/cljs_csvc/compiler.clj
@@ -1,4 +1,4 @@
(ns cs-cs.compiler
(ns cljs-csvc.compiler
(:require [cljs.closure :as cljs])
(:require [cljs.compiler :as comp])
(:import [java.io PushbackReader BufferedReader StringReader]
Expand Down
4 changes: 2 additions & 2 deletions src/cs_cs/http/entry.clj → src/cljs_csvc/http/entry.clj
@@ -1,6 +1,6 @@
(ns cs-cs.http.entry
(ns cljs-csvc.http.entry
(:use [ring.adapter.jetty :only (run-jetty)]
[cs-cs.http.routes :only (app)]))
[cljs-csvc.http.routes :only (app)]))

(defn -main []
(let [port (Integer/parseInt (System/getenv "PORT"))]
Expand Down
@@ -1,6 +1,6 @@
(ns cs-cs.http.interface
(ns cljs-csvc.http.interface
(:require [compojure.handler :as handler]
[cs-cs.compiler :as comp]
[cljs-csvc.compiler :as comp]
[clojure.string :as str]))

(defn str-to-bool [str]
Expand Down
4 changes: 2 additions & 2 deletions src/cs_cs/http/routes.clj → src/cljs_csvc/http/routes.clj
@@ -1,6 +1,6 @@
(ns cs-cs.http.routes
(ns cljs-csvc.http.routes
(:use [compojure.core :only (defroutes GET POST)]
[cs-cs.http.interface :only (handle-compile)])
[cljs-csvc.http.interface :only (handle-compile)])
(:require [compojure.handler :as handler]))

(defroutes routes
Expand Down

0 comments on commit 5913632

Please sign in to comment.