1 ;;; Mudsync --- Live hackable MUD
2 ;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
3 ;;; Copyright © 2012, 2014 Ludovic Courtès <ludo@gnu.org>
5 ;;; This file is part of Mudsync.
7 ;;; Mudsync is free software; you can redistribute it and/or modify it
8 ;;; under the terms of the GNU General Public License as published by
9 ;;; the Free Software Foundation; either version 3 of the License, or
10 ;;; (at your option) any later version.
12 ;;; Mudsync is distributed in the hope that it will be useful, but
13 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 ;;; General Public License for more details.
17 ;;; You should have received a copy of the GNU General Public License
18 ;;; along with Mudsync. If not, see <http://www.gnu.org/licenses/>.
20 (define-module (mudsync)
21 #:use-module (8sync actors)
22 #:use-module (8sync agenda)
23 #:use-module (ice-9 format)
24 #:use-module (ice-9 match)
25 #:use-module (oop goops))
28 ;;; Composite model stuff borrowed from Guix. Thanks, Ludo!
29 (eval-when (eval load compile)
31 (define %public-modules
41 (for-each (let ((i (module-public-interface (current-module))))
43 (module-use! i (resolve-interface `(mudsync ,m)))))