#!/bin/env vpython3 | |
# Copyright 2024 The Chromium Authors | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
"""Alternative entry point to invoking the UTR. | |
Allows the UTR to be invoked like `python3 ./tools/utr ...` | |
""" | |
import sys | |
import run | |
sys.exit(run.main()) |