Skip to content

Commit

Permalink
rename session and woo packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
diasbruno committed Jan 26, 2025
1 parent f720a78 commit 3a5c4a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions web-server/session-csrf.lisp
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
(defpackage #:wst.web-server.session-csrf
(defpackage #:wst.session.csrf
(:use #:cl)
(:export
#:session-csrf-token
#:add-session-csrf-token
#:remove-session-csrf-token
#:verify-session-csrf-token))

(in-package :wst.web-server.session-csrf)
(in-package :wst.session.csrf)

(defgeneric session-csrf-token (obj &key &allow-other-keys))
(defgeneric add-session-csrf-token (obj key &key &allow-other-keys))
Expand Down
2 changes: 1 addition & 1 deletion wst.web-server.woo.asd → wst.routing.woo.asd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(asdf:defsystem #:wst.web-server.woo
(asdf:defsystem #:wst.routing.woo
:pathname "web-server"
:serial t
:components ((:file "woo")))
2 changes: 1 addition & 1 deletion wst.web-server.session-csrf.asd → wst.session.csrf.asd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(asdf:defsystem #:wst.web-server.session-csrf
(asdf:defsystem #:wst.session.csrf
:pathname "web-server"
:serial t
:components ((:file "session-csrf")))

0 comments on commit 3a5c4a5

Please sign in to comment.