This repository has been archived on 2023-02-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
langue-phundrak-com/web/dart/main.dart
T

10 lines
225 B
Dart
Raw Normal View History

import './reorganize_html.dart' show reorganizeHtml;
import './theme.dart' show makeThemeChanger, setTheme;
2019-12-12 15:44:23 +01:00
Future<void> main() async {
await setTheme();
await reorganizeHtml().then((_) {
makeThemeChanger();
});
2019-12-26 15:57:18 +01:00
}