// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // @dart=2.8 library frontend_server; import 'dart:io'; import 'package:flutter_frontend_server/server.dart'; void main(List args) async { final int exitCode = await starter(args); if (exitCode != 0) { exit(exitCode); } }