diff options
author | colin <colin@cicadas.surf> | 2023-01-21 09:53:27 -0800 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2023-01-21 09:53:27 -0800 |
commit | de8646afec9647095c37fabe93500fd8bbebb8aa (patch) | |
tree | 35a0d560683150c7a4d9ea2355d8ea8c1615ffd3 | |
parent | 6b1c9d7ae508c41848828939454945bf2addb994 (diff) |
Rename: routs.lisp->endpoints.lisp
-rw-r--r-- | dnd.asd | 2 | ||||
-rw-r--r-- | endpoints.lisp (renamed from routes.lisp) | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ (:file "utilities") (:file "init") (:file "model") - (:file "routes") + (:file "endpoints") (:file "pages") (:file "transactions") (:file "dnd"))) diff --git a/routes.lisp b/endpoints.lisp index f737c80..4d8b85c 100644 --- a/routes.lisp +++ b/endpoints.lisp @@ -1,4 +1,4 @@ -;;;; routes.lisp -- http routes for dnd +;;;; endpoints.lisp -- http endpoints for dnd (in-package :dnd) |