From 295b65b9ec50418d71f3db221579ada3ff60f58e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Wed, 12 Aug 2020 01:29:04 +0200 Subject: cleanup. --- module/util/config.scm | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'module/util') diff --git a/module/util/config.scm b/module/util/config.scm index ae34963c..29269ce5 100644 --- a/module/util/config.scm +++ b/module/util/config.scm @@ -1,20 +1,14 @@ ;;; Commentary: -;; This file should define all global configurable variables which -;; doesn't belong anywhere else. The config module should then import -;; this module, and set all configs as needed. The config module -;; should also be able to set configs gotten from other parts. +;; Configuration system. ;;; Code: (define-module (util config) + :use-module (util) :use-module (srfi srfi-1) - :use-module (srfi srfi-9) - :use-module (srfi srfi-26) - :use-module (ice-9 match) - :use-module (ice-9 format) + :use-module (ice-9 format) ; for format-procedure :use-module (ice-9 curried-definitions) ; for ensure - :use-module (util) :export (define-config) ) -- cgit v1.2.3