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.
2020-04-24 18:14:52 +02:00
|
|
|
import './reorganize_html.dart' show reorganizeHtml;
|
2020-04-28 22:32:37 +02:00
|
|
|
import './theme.dart' show makeThemeChanger, setTheme;
|
2019-12-12 15:44:23 +01:00
|
|
|
|
2020-04-25 12:15:10 +02:00
|
|
|
Future<void> main() async {
|
2020-04-28 22:32:37 +02:00
|
|
|
await setTheme();
|
2020-04-25 12:15:10 +02:00
|
|
|
await reorganizeHtml().then((_) {
|
|
|
|
|
makeThemeChanger();
|
|
|
|
|
});
|
2019-12-26 15:57:18 +01:00
|
|
|
}
|