130: Renamed startup.py to load_plugins.py

This commit is contained in:
Jason Gerard DeRose 2008-08-13 01:03:32 +00:00
parent 8212be5c4b
commit 13a3de7442
2 changed files with 5 additions and 6 deletions

3
ipa
View File

@ -26,8 +26,9 @@ Just proof of concept stuff in here right now.
"""
import sys
from ipalib.startup import api
from ipalib.run import api
from ipalib.cli import CLI
import ipalib.load_plugins
cli = CLI(api)
cli.run()

View File

@ -18,12 +18,10 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
Importing this module causes the plugins to be loaded and the API to be
generated.
Importing this module causes the plugins to be loaded.
This is not in __init__.py so that importing other IPA modules doesn't cause
unnecessary side effects (needed for unit tests, among other things).
This is not in __init__.py so that importing other ipalib or its other
modules does not cause unnecessary side effects.
"""
from run import api
import Plugins