13 lines
263 B
Python
13 lines
263 B
Python
import os
|
|
import glob
|
|
import abc
|
|
|
|
modules = glob.glob(os.path.dirname(__file__) + '/*.py')
|
|
__all__ = [os.path.basename(f)[:-3] for f in modules]
|
|
|
|
class ibuddy:
|
|
__metaclass__ = abc.ABCMeta
|
|
|
|
@abc.abstractmethod
|
|
def test(self):
|
|
return |