# vim: tabstop=4 shiftwidth=4 softtabstop=4 """Main entry point into the Token service.""" from keystone import config from keystone.common import manager CONF = config.CONF class Manager(manager.Manager): """Default pivot point for the Token backend. See :mod:`keystone.manager.Manager` for more details on how this dynamically calls the backend. See :mod:`keystone.backends.base.Token` for more details on the interface provided by backends. """ def __init__(self): super(Manager, self).__init__(CONF.token.driver)