From 2fc3819beca86c3d19d85e2f5777af3566305175 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Mon, 25 Aug 2008 23:35:29 +0000 Subject: 191: Removed ipalib/api.py module; standard plugable.API instance is now in ipalib.__init__.py --- ipalib/__init__.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'ipalib/__init__.py') diff --git a/ipalib/__init__.py b/ipalib/__init__.py index 4d96c2d6..2436d9b1 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, +) -- cgit