blob: 49bc5ab41fcef83594dad30dd9aa552491f22489 [file] [log] [blame]
// Copyright (c) 2014, 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.
// To meet GAE needs this file must be called 'server.dart'.
library appengine.services.bin;
import 'dart:async';
import 'package:dart_services/services_gae.dart' as server;
import 'package:dart_services/src/sdk_manager.dart';
Future<void> main(List<String> args) async {
// Ensure the Dart SDK is downloaded (if already up-to-date, no work is
// performed).
await SdkManager.sdk.init();
server.main(args);
}