summary refs log tree commit diff
path: root/lib/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/index.ts')
-rw-r--r--lib/index.ts17
1 files changed, 13 insertions, 4 deletions
diff --git a/lib/index.ts b/lib/index.ts
index 4bf4dd3..3eddf7a 100644
--- a/lib/index.ts
+++ b/lib/index.ts
@@ -1,6 +1,8 @@
+import { FeedOptions } from "./interfaces";
 import { getPost as apiGetPost } from "./getPost";
 import { getPosts as apiGetPosts } from "./getPosts";
-import { generateApi as apiGenerateApi } from "./generateApi"
+import { generateApi as apiGenerateApi } from "./generateApi";
+import { generateRss as apiGenerateRss } from "./generateRss";
 import Post from "./Post";
 
 export default class Kronikarz {
@@ -13,11 +15,18 @@ export default class Kronikarz {
   getPosts(): Array<Post> {
     return apiGetPosts(this.postPath);
   }
+
   getPost(year: string, month: string, day: string, title: string): Post {
     return apiGetPost({ year, month, day, title }, this.postPath);
   }
-    generateApi(path: string) {
-      const posts = this.getPosts();
-      apiGenerateApi(posts, path)
+
+  generateApi(path: string) {
+    const posts = this.getPosts();
+    apiGenerateApi(posts, path)
+  }
+
+  generateRss(path: string, feedOptions: FeedOptions) {
+    const posts = this.getPosts();
+    apiGenerateRss(posts, path, feedOptions);
   }
 }