blob: 7619db20f96fe92bccebb2bce8452ee554f30e2e [file] [log] [blame]
// Copyright 2023 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.
import 'dart:io' show exit;
import 'package:githubanalysis/main.dart' as lib show main;
void main(final List<String> arguments) async {
exit(await lib.main(arguments));
}