1#!/usr/bin/env python3
2# Copyright(c) 2022 Intel Corporation. All rights reserved.
3# SPDX-License-Identifier: Apache-2.0
4
5import asyncio
6
7import cavstool
8
9if __name__ == "__main__":
10    cavstool.args_parse()
11    try:
12        asyncio.run(cavstool.main())
13    except KeyboardInterrupt:
14        start_output = False
15