mirror of
https://github.com/chenasraf/dart_script_runner.git
synced 2026-05-18 01:49:04 +00:00
7 lines
263 B
Dart
7 lines
263 B
Dart
/// This is the primary library used for loading and running scripts.
|
|
library script_runner;
|
|
|
|
export 'src/base.dart' show runScript;
|
|
export 'src/config.dart' show ScriptRunnerConfig, ScriptRunnerShellConfig;
|
|
export 'src/runnable_script.dart' show RunnableScript;
|