This repository has been archived on 2025-02-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2020-05-05 14:49:26 +02:00
|
|
|
import './reorganize_html.dart' show reorganizeHtml;
|
|
|
|
|
import './theme.dart' show enableThemeChanger, setTheme;
|
2020-05-10 12:00:47 +02:00
|
|
|
import './parse_sitemap.dart' show getSitemap;
|
2020-05-05 14:49:26 +02:00
|
|
|
|
|
|
|
|
Future<void> main() async {
|
|
|
|
|
await setTheme();
|
2020-05-10 12:00:47 +02:00
|
|
|
await reorganizeHtml().then((_) => enableThemeChanger());
|
|
|
|
|
await getSitemap();
|
2020-05-05 14:49:26 +02:00
|
|
|
}
|