191: Removed ipalib/api.py module; standard plugable.API instance is now in ipalib.__init__.py

This commit is contained in:
Jason Gerard DeRose
2008-08-25 23:35:29 +00:00
parent 513bbb32b9
commit 2fc3819bec
4 changed files with 12 additions and 29 deletions

View File

@@ -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,
)