diff options
| author | Andrei <andreisva2023@gmail.com> | 2026-02-13 20:57:05 -0800 |
|---|---|---|
| committer | Andrei <andreisva2023@gmail.com> | 2026-02-13 20:57:05 -0800 |
| commit | 0fa9f69a97b9f695936b907424e4c3d1af6f7452 (patch) | |
| tree | 9a471d3ab005105e8bfcff73184f6beef5dbfa1c /nullbot.asd | |
Initial Commit
Diffstat (limited to 'nullbot.asd')
| -rw-r--r-- | nullbot.asd | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/nullbot.asd b/nullbot.asd new file mode 100644 index 0000000..033d589 --- /dev/null +++ b/nullbot.asd @@ -0,0 +1,28 @@ +(defsystem "nullbot" + :version "0.0.1" + :author "Andrei Șova" + :license "MIT" + :depends-on (:com.inuoe.jzon + :dexador + :bordeaux-threads + :cl-hash-util + :quri + :flexi-streams + :split-sequence) + :components ((:module "src" + :components + ((:file "api") + (:file "main" :depends-on ("api"))))) + :description "A bot for nullring on matrix" + :in-order-to ((test-op (test-op "nullbot/tests")))) + +(defsystem "nullbot/tests" + :author "Andrei Șova" + :license "MIT" + :depends-on (:nullbot + :rove) + :components ((:module "tests" + :components + ((:file "main")))) + :description "Test system for nullbot" + :perform (test-op (op c) (symbol-call :rove :run c))) |
