From 67c4f89e865fa0e79d634c280246c15923c215fa Mon Sep 17 00:00:00 2001 From: JaekwonBang Date: Thu, 13 May 2021 15:41:27 +0900 Subject: [PATCH] Add Common Help Message --- src/fosslight_util/_help.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/fosslight_util/_help.py diff --git a/src/fosslight_util/_help.py b/src/fosslight_util/_help.py new file mode 100644 index 0000000..8551def --- /dev/null +++ b/src/fosslight_util/_help.py @@ -0,0 +1,19 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# Copyright (c) 2021 LG Electronics Inc. +# SPDX-License-Identifier: LicenseRef-LGE-Proprietary +_HELP_MESSAGE_COMMON = """ + _______ _______ _______ _______ ___ ___ _______ __ __ _______ + | || || || || | | | | || | | || | + | ___|| _ || _____|| _____|| | | | | ___|| |_| ||_ _| + | |___ | | | || |_____ | |_____ | | | | | | __ | | | | + | ___|| |_| ||_____ ||_____ || |___ | | | || || _ | | | + | | | | _____| | _____| || || | | |_| || | | | | | + |___| |_______||_______||_______||_______||___| |_______||__| |__| |___| +""" +from abc import * + +class PrintHelpMsgBase(metaclass=ABCMeta): + @abstractmethod + def print_help_msg(self): + print(_HELP_MESSAGE_COMMON) \ No newline at end of file