main function

Future<void> main()

Implementation

Future<void> main() async {
  final downloader = ComicDownloader();
  await downloader.run();
}