mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-07 02:04:21 +01:00
9 lines
296 B
Dart
9 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);
|
|
}
|