OLD | NEW |
---|---|
1 #!/usr/bin/env python | |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 2 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 4 # found in the LICENSE file. |
4 | 5 |
6 import sys | |
7 | |
8 from infra.tools.cq_stats import cq_stats | |
9 | |
10 | |
11 if __name__ == '__main__': | |
12 sys.exit(cq_stats.main()) | |
OLD | NEW |