1
0
mirror of https://github.com/altlinux/gpupdate.git synced 2025-03-16 22:50:17 +03:00
gpupdate/gpoa/plugin/plugin.py

28 lines
858 B
Python
Raw Permalink Normal View History

2020-01-22 15:30:52 +04:00
#
# GPOA - GPO Applier for Linux
#
2020-01-22 15:30:52 +04:00
# Copyright (C) 2019-2020 BaseALT Ltd.
#
# This program is free software: you can redistribute it and/or modify
2020-01-22 15:30:52 +04:00
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
2020-01-22 15:30:52 +04:00
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2020-01-22 15:30:52 +04:00
from abc import ABC
class plugin():
def __init__(self, plugin_name):
self.plugin_name = plugin_name
def run(self):
pass