Skip to content

Commit

Permalink
Fixed imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed Dec 12, 2023
1 parent cf8fbe7 commit 19925ec
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 4 deletions.
1 change: 0 additions & 1 deletion docs/core.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#:reblocks-ui/core)
(:import-from #:40ants-doc
#:defsection)
(:import-from #:reblocks)
(:export #:@core))
(in-package #:reblocks-ui-docs/core)

Expand Down
3 changes: 2 additions & 1 deletion docs/form.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
(:use #:cl)
(:import-from #:40ants-doc
#:defsection)
(:import-from #:reblocks)
(:import-from #:reblocks/doc/example
#:defexample)
(:import-from #:reblocks-ui/form
Expand All @@ -12,6 +11,8 @@
#:field-error)
(:import-from #:reblocks/html
#:with-html)
(:import-from #:reblocks-ui/core)
(:import-from #:reblocks/widget)
(:export #:@form))
(in-package #:reblocks-ui-docs/form)

Expand Down
2 changes: 1 addition & 1 deletion docs/index.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
(:use #:cl)
(:import-from #:40ants-doc
#:defsection)
(:import-from #:reblocks)
(:import-from #:reblocks/doc/example
#:defexample)
(:import-from #:docs-config
Expand All @@ -20,6 +19,7 @@
#:@form)
(:import-from #:reblocks-ui-docs/core
#:@core)
(:import-from #:reblocks/widget)
(:export #:@index
#:@readme))
(in-package #:reblocks-ui-docs/index)
Expand Down
2 changes: 2 additions & 0 deletions examples/form-errors.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
(:use #:cl)
(:import-from #:reblocks/app
#:defapp)
(:import-from #:reblocks/server)
(:import-from #:reblocks/session)
(:import-from #:reblocks/widget
#:update
#:defwidget)
Expand Down
3 changes: 3 additions & 0 deletions reblocks-ui.asd
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,6 @@
(read-sequence seq stream))
seq)))
:in-order-to ((test-op (test-op reblocks-ui-test))))


(asdf:register-system-packages "log4cl" '("LOG"))
1 change: 1 addition & 0 deletions src/core.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
(:nicknames #:reblocks-ui)

(:import-from #:reblocks-parenscript)
(:import-from #:log)
(:import-from #:parenscript
#:chain)
(:import-from #:reblocks/widget
Expand Down
3 changes: 2 additions & 1 deletion src/form.lisp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
(defpackage #:reblocks-ui/form
(:use #:cl)
(:import-from #:log4cl)
(:import-from #:log)
(:import-from #:spinneret)
(:import-from #:reblocks/actions
#:make-action-url
#:make-action)
Expand Down

0 comments on commit 19925ec

Please sign in to comment.