diff options
author | Rob Austein <sra@hactrn.net> | 2012-01-12 04:01:20 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-01-12 04:01:20 +0000 |
commit | e5662c723c93bbdd0d5b752d96fea038ab8b4da0 (patch) | |
tree | fd706f153de71d0239657e4c620bd4b52c24c530 /rpkid/rpki/irdb/__init__.py | |
parent | 8cd53f7fdc02c73bbc32f32b8a9e21564f298fb1 (diff) |
Refactor library functions out of rpkic command line shell (see #26,
but note that I'm working this as part of #100 so it's on the tk100
branch, see #100).
This substantially completes #26 and #100, other than GUI integration.
Still some documentation and cleanup work to be done.
svn path=/branches/tk100/; revision=4150
Diffstat (limited to 'rpkid/rpki/irdb/__init__.py')
-rw-r--r-- | rpkid/rpki/irdb/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rpkid/rpki/irdb/__init__.py b/rpkid/rpki/irdb/__init__.py index efd75a03..3eb6fab7 100644 --- a/rpkid/rpki/irdb/__init__.py +++ b/rpkid/rpki/irdb/__init__.py @@ -1,6 +1,6 @@ """ Django really wants its models packaged as a models module within a -Python package. Humor it. +Python package, so humor it. $Id$ @@ -20,3 +20,4 @@ PERFORMANCE OF THIS SOFTWARE. """ from rpki.irdb.models import * +from rpki.irdb.zookeeper import Zookeeper |