diff options
author | Ben Sima <ben@bsima.me> | 2021-06-07 16:34:36 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-11-26 13:47:35 -0500 |
commit | 0ff0a23c8c7425b0d56b95e318c2087e74cb6605 (patch) | |
tree | a5bfbaf70fa6a73c2e4b083cdefa5b2228153d98 /Biz/Serval.scm | |
parent | 310275abdc61130c8cc77f7827163f136d57b63f (diff) |
Get all scheme code compiling with Guile
Diffstat (limited to 'Biz/Serval.scm')
-rw-r--r-- | Biz/Serval.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Biz/Serval.scm b/Biz/Serval.scm index 2ea89c2..303acdb 100644 --- a/Biz/Serval.scm +++ b/Biz/Serval.scm @@ -1,6 +1,8 @@ ;; ;; Serval - fast container management ;; +;; : out serval +;; ;; `Container management' simply refers to tracking the configuration ;; for individual containers and their running state. ;; @@ -36,11 +38,10 @@ #:select (match)) #:use-module ((srfi srfi-9) #:select (define-record-type)) - #:use-module ((Alpha Core) - #:select (second rest fmt prn first comment)) - #:use-module ((Alpha Test) + #:use-module ((bs core) + #:select (rest fmt prn comment)) + #:use-module ((bs test) #:select (testing)) - #:use-module ((Alpha Shell) #:prefix Shell.) #:export (main)) (define *data-dir* "/var/lib/serval") |