diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-08-25 23:35:29 +0000 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-08-25 23:35:29 +0000 |
commit | 2fc3819beca86c3d19d85e2f5777af3566305175 (patch) | |
tree | b989c83e1de6047e54240ce14101fe2be8c47136 /ipalib/__init__.py | |
parent | 513bbb32b989906795d281738d90fc113192b217 (diff) | |
download | freeipa-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__.py | 10 |
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, +) |