From 0fa9f69a97b9f695936b907424e4c3d1af6f7452 Mon Sep 17 00:00:00 2001 From: Andrei Date: Fri, 13 Feb 2026 20:57:05 -0800 Subject: Initial Commit --- nullbot.asd | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 nullbot.asd (limited to 'nullbot.asd') 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))) -- cgit v1.2.3