• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env vpython3
2# Copyright 2024 The Chromium Authors
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6import sys
7from crossbench.cli.btp import BTPUtil
8
9if __name__ == "__main__":
10  btp = BTPUtil()
11  btp.run(sys.argv)
12