diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-07-19 04:28:03 +0000 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-07-19 04:28:03 +0000 |
commit | ef7594ffe1bad349dc539f69ee90708460999a71 (patch) | |
tree | 0b6773b10d9c8946cb5d4ecd02644c9f2fb4eaad /ipalib/__init__.py | |
parent | 5470a0d29a9131a5b95e6092df898ee579600e07 (diff) | |
download | freeipa-ef7594ffe1bad349dc539f69ee90708460999a71.tar.gz freeipa-ef7594ffe1bad349dc539f69ee90708460999a71.tar.xz freeipa-ef7594ffe1bad349dc539f69ee90708460999a71.zip |
4: Got basics of API.register_command() working; added corresponding unit tests
Diffstat (limited to 'ipalib/__init__.py')
-rw-r--r-- | ipalib/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ipalib/__init__.py b/ipalib/__init__.py index ddce3ac9..1337d812 100644 --- a/ipalib/__init__.py +++ b/ipalib/__init__.py @@ -20,3 +20,7 @@ """ IPA library. """ + +import base + +api = base.API() |