10 lines
176 B
Python
10 lines
176 B
Python
|
from abc import ABCMeta, abstractmethod
|
||
|
from shell import shell
|
||
|
|
||
|
class Gist:
|
||
|
__metaclass__ = ABCMeta
|
||
|
|
||
|
@abstractmethod
|
||
|
def execute(self, Shell: shell):
|
||
|
pass
|