Playing around with some Tan packages

This commit is contained in:
2024-06-19 01:11:03 -04:00
parent ad64899de4
commit 5655e22075
9 changed files with 5813 additions and 0 deletions

7
src/api/plexApi.js Normal file
View File

@@ -0,0 +1,7 @@
import axios from 'axios';
import Parser from 'rss-parser';
export async function fetchPlexWatchlistFeed(feed) {
let rssParser = new Parser();
return rssParser.parseURL(feed);
}