mirror of
https://mirror.ghproxy.com/https://github.com/StarCitizenToolBox/app.git
synced 2024-12-24 01:13:40 +08: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);
|
|
}
|