blob: 1f2940791b3be6bd0800f56ba8930008bf147f98 [file] [log] [blame]
Kristofer Jonssone56b6e42022-09-29 11:52:22 +02001#!/usr/bin/env python3
2
3#
4# SPDX-FileCopyrightText: Copyright 2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
5#
6# SPDX-License-Identifier: Apache-2.0
7#
8# Licensed under the Apache License, Version 2.0 (the License); you may
9# not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an AS IS BASIS, WITHOUT
16# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
19#
20
Kristofer Jonsson0eb69052022-12-01 17:20:31 +010021from ethosumonitor.main import main
22from sys import exit
Kristofer Jonssone56b6e42022-09-29 11:52:22 +020023
24if __name__ == '__main__':
Kristofer Jonsson0eb69052022-12-01 17:20:31 +010025 exit(main())