blob: ee4ffb23a32fa8ab0a5c5a7d30a8c36698f54574 [file] [log] [blame]
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
library vmservice_io;
import 'dart:io';
import 'vmservice.dart';
part 'server.dart';
var _port;
main() {
// Create VmService.
var service = new VMService();
// Start HTTP server.
var server = new Server(service, _port);
server.startServer();
}