Shadowfacts 2adb93395e
ActivityPub attempt 2: it actually works this time
Use Node.js Express app to serve both statically generated content and
dynamic AP stuff
2019-02-20 17:12:29 -05:00

21 lines
385 B
TypeScript

import categories from "./categories";
import copy from "./copy";
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,
copy,
css,
homepage,
missing,
posts,
redirects,
rss,
tutorials
};