Move backends.py to keystone.server

The backends module is only used by keystone server to kick off
the various backends.

Change-Id: I3a803a35a7d02d9033b3f94032a745f173f008fa
This commit is contained in:
Steve Martinelli 2015-07-17 17:15:49 -07:00
parent 7a28fdb638
commit 996c2dbbfb
3 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,6 @@ from oslo_log import log
from oslo_serialization import jsonutils from oslo_serialization import jsonutils
import pbr.version import pbr.version
from keystone import backends
from keystone.common import driver_hints from keystone.common import driver_hints
from keystone.common import openssl from keystone.common import openssl
from keystone.common import sql from keystone.common import sql
@ -31,6 +30,7 @@ from keystone.common import utils
from keystone import config from keystone import config
from keystone import exception from keystone import exception
from keystone.i18n import _, _LW from keystone.i18n import _, _LW
from keystone.server import backends
from keystone import token from keystone import token

View File

@ -14,10 +14,10 @@
from oslo_config import cfg from oslo_config import cfg
from keystone import backends
from keystone.common import dependency from keystone.common import dependency
from keystone.common import sql from keystone.common import sql
from keystone import config from keystone import config
from keystone.server import backends
CONF = cfg.CONF CONF = cfg.CONF