summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugin/__init__.py
blob: b76dbe7a094f97a9d74db36501eec700e0cd1100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
""" ``Bcfg2.Server.Plugin`` contains server plugin base classes,
interfaces, exceptions, and helper objects.  This module is split into
a number of submodules to make it more manageable, but it imports all
symbols from the submodules, so with the exception of some
documentation it's not necessary to use the submodules.  E.g., you can
(and should) do::

    from Bcfg2.Server.Plugin import Plugin

...rather than::

    from Bcfg2.Server.Plugin.base import Plugin
"""

import os
import sys
sys.path.append(os.path.dirname(__file__))

from base import *
from interfaces import *
from helpers import *
from exceptions import *