systemd-parse/sst.asd
J S 9474199299
feat[all] Wrote initial read-file functionality
I created the first version of READ-SYSTEM.
It parses a .service file into an associative list of hash-tables.
2023-12-19 16:29:39 -05:00

10 lines
341 B
Common Lisp

(defsystem :systemd-parse
:depends-on (:cl-ppcre)
:components ((:file "packages-systemd")
(:module "src"
:serial t
:components ((:file "read-service")
(:file "write-service")
(:file "service-opts")
))))