blob: 5750d57c55ba10841c57e0cca7bb70fae78e3b0b [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();
await SdkManager.flutterSdk.init();
server.main(args);
}