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