summaryrefslogtreecommitdiffstats
path: root/ipalib/__init__.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-08-25 23:35:29 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-08-25 23:35:29 +0000
commit2fc3819beca86c3d19d85e2f5777af3566305175 (patch)
treeb989c83e1de6047e54240ce14101fe2be8c47136 /ipalib/__init__.py
parent513bbb32b989906795d281738d90fc113192b217 (diff)
downloadfreeipa-2fc3819beca86c3d19d85e2f5777af3566305175.tar.gz
freeipa-2fc3819beca86c3d19d85e2f5777af3566305175.tar.xz
freeipa-2fc3819beca86c3d19d85e2f5777af3566305175.zip
191: Removed ipalib/api.py module; standard plugable.API instance is now in ipalib.__init__.py
Diffstat (limited to 'ipalib/__init__.py')
-rw-r--r--ipalib/__init__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/ipalib/__init__.py b/ipalib/__init__.py
index 4d96c2d61..2436d9b14 100644
--- a/ipalib/__init__.py
+++ b/ipalib/__init__.py
@@ -31,3 +31,13 @@ To learn about the ``ipalib`` library, you should read the code in this order:
Some of the plugin architecture was inspired by ``bzr``, so you might also
read http://bazaar-vcs.org/WritingPlugins
"""
+
+import plugable
+import public
+
+api = plugable.API(
+ public.Command,
+ public.Object,
+ public.Method,
+ public.Property,
+)