Initial commit, added all backend files

This commit is contained in:
2020-05-05 14:49:26 +02:00
commit 8b85ea5952
13 changed files with 1124 additions and 0 deletions

9
web/dart/main.dart Normal file
View File

@@ -0,0 +1,9 @@
import './reorganize_html.dart' show reorganizeHtml;
import './theme.dart' show enableThemeChanger, setTheme;
Future<void> main() async {
await setTheme();
await reorganizeHtml().then((_) {
enableThemeChanger();
});
}