summaryrefslogtreecommitdiffstats
path: root/ipalib/__init__.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-09-24 01:36:54 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-09-24 01:36:54 +0000
commitc38b90d5d4de1c6d351ce1d9fd94555376d6dda7 (patch)
treef3dcf6942471d4c3a663a4ed5c217b096cc92584 /ipalib/__init__.py
parentf3aaf65f1c4bbee31dae9431423ab88a15eba990 (diff)
downloadfreeipa-c38b90d5d4de1c6d351ce1d9fd94555376d6dda7.tar.gz
freeipa-c38b90d5d4de1c6d351ce1d9fd94555376d6dda7.tar.xz
freeipa-c38b90d5d4de1c6d351ce1d9fd94555376d6dda7.zip
321: Standard ipalib.api attribute now accepts plugins from the Backend base class
Diffstat (limited to 'ipalib/__init__.py')
-rw-r--r--ipalib/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipalib/__init__.py b/ipalib/__init__.py
index e6548ff84..216d654fc 100644
--- a/ipalib/__init__.py
+++ b/ipalib/__init__.py
@@ -55,6 +55,7 @@ True
import plugable
import frontend
+import backend
api = plugable.API(
frontend.Command,
@@ -62,4 +63,5 @@ api = plugable.API(
frontend.Method,
frontend.Property,
frontend.Application,
+ backend.Backend,
)