mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-04-18 15:52:54 +00:00
8 lines
296 B
Dart
8 lines
296 B
Dart
/// This is copied from Cargokit (which is the official way to use it currently)
|
|
/// Details: https://fzyzcjy.github.io/flutter_rust_bridge/manual/integrate/builtin
|
|
|
|
import 'src/build_tool.dart' as build_tool;
|
|
|
|
Future<void> runMain(List<String> args) async {
|
|
return build_tool.runMain(args);
|
|
}
|