GShellAutomator/Automator/shell/gists/gist.py

10 lines
176 B
Python
Raw Normal View History

from abc import ABCMeta, abstractmethod
from shell import shell
class Gist:
__metaclass__ = ABCMeta
@abstractmethod
def execute(self, Shell: shell):
pass