diff options
Diffstat (limited to 'ss/as/atom.scm')
-rw-r--r-- | ss/as/atom.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ss/as/atom.scm b/ss/as/atom.scm new file mode 100644 index 0000000..c089974 --- /dev/null +++ b/ss/as/atom.scm @@ -0,0 +1,10 @@ +(define-module (ss as atom) + #:use-module ((ss atom) #:prefix atom:) + #:use-module (ss dates) + #:declarative? #f) + +(define main atom:feed) +(define post atom:entry) +(define person atom:person) +(define media atom:media) + |