Skip to content

Commit 48fce70

Browse files
committed
records.scm: Just use module-export-all!, more concise.
1 parent 85d9f3a commit 48fce70

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

guile/spotiqueue/records.scm

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
;;; subscribe to hooks, some of them will pass you a <track> object.
77

88
(define-module (spotiqueue records)
9-
#:use-module (srfi srfi-9)
10-
#:export
11-
(<track> make-track track? track-uri track-title track-artist track-album track-duration))
9+
#:use-module (srfi srfi-9))
10+
(module-export-all! (current-module))
1211

1312
(format #t "guile ~s: Loading Spotiqueue record definitions...~%" (module-name (current-module)))
1413

0 commit comments

Comments
 (0)