Files
deb-openstack-trove/trove/taskmanager/service.py
wangjunqing 6a671645a3 Trivial: Remove unused logging import
Change-Id: I57a77fdac4674c5e82bb870916d74a31ba5503d1
Close-Bug: #1529541
2016-04-23 19:32:00 +08:00

23 lines
769 B
Python

# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
class TaskService(object):
"""Task Manager interface."""
def app_factory(global_conf, **local_conf):
return TaskService()