chromium/buildtools/reclient_cfgs/fetch_reclient_cfgs.py

#!/usr/bin/env python3
# Copyright 2021 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""This script is used to fetch reclient cfgs.

This is renamed to configure_reclient_cfgs.py, delete this file if there are no
reference to this file.
"""

import sys

import configure_reclient_cfgs

if __name__ == '__main__':
    sys.exit(configure_reclient_cfgs.main())