-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
35 lines (34 loc) · 1.16 KB
/
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
26
27
28
29
30
31
32
33
34
35
const { getLatestComics } = require('./src/home');
const { getComicsThroughSearch } = require('./src/search');
const { getDCComics, getDCComicsVertigo, getDCComicsWildstorm } = require('./src/dccomics');
const { getMarvelComics } = require('./src/marvelcomics');
const { getEuropeComics, getImageComics, get2000adComics, getAftershockComics,
getAntarticPressComics, getArchieComics, getAvatarPressComics, getAspenComics,
getBlackMaskComics, getBoomStudiosComics, getDarkHorseComics, getDynamiteComics,
getIDWComics, getLionForgeComics, getOniPressComics, getValiantComics,
getZenescopeComics } = require('./src/otherComics');
module.exports = {
getLatestComics,
getComicsThroughSearch,
getDCComics,
getDCComicsVertigo,
getDCComicsWildstorm,
getMarvelComics,
getEuropeComics,
getIDWComics,
getImageComics,
get2000adComics,
getAftershockComics,
getAntarticPressComics,
getArchieComics,
getAvatarPressComics,
getAspenComics,
getBlackMaskComics,
getBoomStudiosComics,
getDarkHorseComics,
getDynamiteComics,
getLionForgeComics,
getOniPressComics,
getValiantComics,
getZenescopeComics
};