Skip to content

Commit

Permalink
More fixes to imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed Dec 6, 2023
1 parent 1e2ccc4 commit bc887f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 2 additions & 0 deletions reblocks.asd
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
;; This package defines an :around method for reblocks/widgets:render
;; which adds a wrapper around widget body
"reblocks/widgets/render-methods"
"reblocks/routes-error-handler"
"reblocks/dependencies-impl"
;; we need to depend on this package, because
;; lack:builder will try to find `LACK.MIDDLEWARE.SESSION`
;; package
Expand Down
1 change: 0 additions & 1 deletion src/hooks.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
#:symbolicate
#:ensure-symbol
#:with-gensyms)
(:import-from #:40ants-doc)
(:import-from #:40ants-doc/ignored-words
#:ignore-words-in-package)

Expand Down
3 changes: 1 addition & 2 deletions src/server.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
#:get-route
#:add-route
#:add-routes)
(:import-from #:reblocks/routes-error-handler)
(:import-from #:reblocks/app
#:get-prefix
#:app-serves-hostname-p
Expand All @@ -31,12 +30,12 @@

(:import-from #:lack/request
#:make-request)
(:import-from #:lack/response)
(:import-from #:clack
#:clackup)
(:import-from #:cl-strings
#:starts-with)
;; Just dependencies
(:import-from #:reblocks/dependencies-impl)
(:import-from #:reblocks/debug)
(:import-from #:log)
(:import-from #:reblocks/welcome/app
Expand Down
4 changes: 1 addition & 3 deletions src/widgets/render-methods.lisp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
(defpackage #:reblocks/widgets/render-methods
(:use #:cl)
(:import-from #:log)
(:import-from #:reblocks/dependencies
#:get-dependencies
#:render-in-ajax-response)
Expand All @@ -15,8 +14,7 @@
(:import-from #:reblocks/html
#:with-html)
(:import-from #:reblocks/widgets/dom
#:dom-id)
(:import-from #:log))
#:dom-id))
(in-package #:reblocks/widgets/render-methods)


Expand Down

0 comments on commit bc887f6

Please sign in to comment.