protevus/bin/server.dart

8 lines
126 B
Dart
Raw Normal View History

2016-09-24 20:43:48 +00:00
#!/usr/bin/env dart
2016-04-22 02:56:21 +00:00
import 'dart:async';
2016-12-24 16:12:50 +00:00
import 'common.dart';
2016-04-22 02:56:21 +00:00
main() async {
2016-12-24 16:12:50 +00:00
runZoned(startServer(), onError: onError);
2016-06-23 21:54:10 +00:00
}