24 lines
402 B
TypeScript
Raw Normal View History

2020-08-21 22:37:57 -04:00
import archive from "./archive";
2019-01-04 13:36:40 -05:00
import copy from "./copy";
2019-01-04 13:14:53 -05:00
import css from "./css";
2019-09-17 15:30:47 -04:00
import errors from "./errors";
2019-01-04 13:14:53 -05:00
import homepage from "./homepage";
import posts from "./posts";
2020-07-09 14:10:39 -04:00
import * as rss from "./rss";
2020-08-29 12:09:42 -04:00
import tags from "./tags";
2019-01-04 13:14:53 -05:00
import tutorials from "./tutorials";
2020-01-27 19:31:59 -05:00
import years from "./years";
2019-01-04 13:14:53 -05:00
export = {
2020-08-21 22:37:57 -04:00
archive,
2019-01-04 13:36:40 -05:00
copy,
2019-01-04 13:14:53 -05:00
css,
2019-09-17 15:30:47 -04:00
errors,
2019-01-04 13:14:53 -05:00
homepage,
posts,
rss,
2020-08-29 12:09:42 -04:00
tags,
2020-01-27 19:31:59 -05:00
tutorials,
years,
2019-09-17 15:30:47 -04:00
};