forked from cyruseftos/apple-news-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
25 lines (24 loc) · 749 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/******************************************************************
*
* Apple News API Client
* For NodeJS
*
* A rewrite in TypeScript as well as including support for
* files on the local filesystem versus remotely hosted or locally
* served.
*
* Based on the gracious work by the `micnews` team.
*
* Original repository {@link https://github.com/micnews/apple-news}
*
* @version 0.5
* @license MIT
* @copyright 2018 Robert Fairley
* @author Robert Fairley <[email protected]>
*
*****************************************************************/
const AppleNewsClient = require("./lib").default;
module.exports = {
default: AppleNewsClient,
AppleNewsClient
};