mirror of
https://github.com/chenasraf/dart_script_runner.git
synced 2026-05-18 01:49:04 +00:00
15 lines
372 B
Dart
15 lines
372 B
Dart
/// Support for doing something awesome.
|
|
///
|
|
/// More dartdocs go here.
|
|
library script_runner;
|
|
|
|
import 'package:script_runner/src/script_runner_base.dart';
|
|
|
|
export 'src/script_runner_base.dart';
|
|
|
|
Future<void> main(List<String> args) async {
|
|
final scriptCmd = args.first;
|
|
final scriptArgs = args.sublist(0, args.length - 1);
|
|
await runScript(scriptCmd, scriptArgs);
|
|
}
|