forked from shadowfacts/shadowfacts.net
19 lines
351 B
TypeScript
19 lines
351 B
TypeScript
|
import categories from "./categories";
|
||
|
import css from "./css";
|
||
|
import homepage from "./homepage";
|
||
|
import missing from "./missing";
|
||
|
import posts from "./posts";
|
||
|
import redirects from "./redirects";
|
||
|
import rss from "./rss";
|
||
|
import tutorials from "./tutorials";
|
||
|
|
||
|
export = {
|
||
|
categories,
|
||
|
css,
|
||
|
homepage,
|
||
|
missing,
|
||
|
posts,
|
||
|
redirects,
|
||
|
rss,
|
||
|
tutorials
|
||
|
};
|