diff options
Diffstat (limited to 'src/as')
-rw-r--r-- | src/as/atom.scm | 10 | ||||
-rw-r--r-- | src/as/html.scm | 9 | ||||
-rw-r--r-- | src/as/media-list.scm | 9 |
3 files changed, 0 insertions, 28 deletions
diff --git a/src/as/atom.scm b/src/as/atom.scm deleted file mode 100644 index 092393c..0000000 --- a/src/as/atom.scm +++ /dev/null @@ -1,10 +0,0 @@ -(define-module (src as atom) - #:use-module ((src atom) #:prefix atom:) - #:use-module (src dates) - #:declarative? #f) - -(define main atom:feed) -(define post atom:entry) -(define person atom:person) -(define media atom:media) - diff --git a/src/as/html.scm b/src/as/html.scm deleted file mode 100644 index 8d2a6e8..0000000 --- a/src/as/html.scm +++ /dev/null @@ -1,9 +0,0 @@ -(define-module (src as html) - #:use-module (src dates) - #:use-module ((src html) #:prefix html:) - #:declarative? #f) - -(define main html:index) -(define post html:post) -(define person html:person) -(define media html:media) diff --git a/src/as/media-list.scm b/src/as/media-list.scm deleted file mode 100644 index ca29507..0000000 --- a/src/as/media-list.scm +++ /dev/null @@ -1,9 +0,0 @@ -(define-module (src as media-list) - #:use-module (src dates) - #:use-module ((src media-list) #:prefix media-list:) - #:declarative? #f) - -(define main media-list:media-list) -(define post media-list:ignore) -(define person media-list:ignore) -(define media media-list:add-to-list) |