7 lines
134 B
Dart
Executable file
7 lines
134 B
Dart
Executable file
#!/usr/bin/env dart
|
|
import 'dart:async';
|
|
import 'common.dart';
|
|
|
|
main(args) async {
|
|
runZoned(startServer(args), onError: onError);
|
|
}
|