Contents:
import sys from testapp.command.__interface import CommandInterface [docs] class ExitCommand(CommandInterface): """ Exit 클래스는 프로그램을 종료하는 명령어를 구현합니다. """ [docs] required_args_cnt: int = 0 [docs] def run(self): sys.exit() @staticmethod [docs] def is_valid_args(*args) -> bool: """ 주어진 인자가 유효한지 확인합니다. """ return True