blob: f133a0f3038b90bae1431cefba956706a1db8804 [file] [log] [blame]
[email protected]029b0322013-04-23 21:44:26 +00001// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4
Natalie Weizenbauma2373cc2015-05-21 17:11:41 -07005import 'package:pub/src/command_runner.dart';
Sigurd Meldgaard63b56ea2020-10-28 14:16:50 +01006import 'package:pub/src/io.dart';
[email protected]97c295c2013-04-24 22:18:39 +00007
Sigurd Meldgaard49201122020-10-19 12:04:50 +02008Future<void> main(List<String> arguments) async {
Sigurd Meldgaard63b56ea2020-10-28 14:16:50 +01009 await flushThenExit(await PubCommandRunner().run(arguments));
[email protected]97c295c2013-04-24 22:18:39 +000010}