mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 12:22:18 +03:00
11 lines
303 B
Python
11 lines
303 B
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
|
|
|
|
|
class AbstractPlugin(object):
|
|
"""This is base class for plugins"""
|
|
|
|
def __init__(self, arg):
|
|
super(AbstrackPlugin, self).__init__()
|
|
self.arg = arg
|