Files
tobiko/tobiko/openstack/heat/__init__.py
T
Federico Ressi b6244de450 Rename tobiko.openstack.heat modules.
Change-Id: I9fd4c1b7012238652ed515458d2c025eb54f141c
2019-04-01 15:06:49 +02:00

29 lines
1.0 KiB
Python

# Copyright 2019 Red Hat
#
# 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.
from __future__ import absolute_import
from tobiko.openstack.heat import _client
from tobiko.openstack.heat import _template
from tobiko.openstack.heat import _stack
get_heat_client = _client.get_heat_client
HeatClientFixture = _client.HeatClientFixture
HeatTemplate = _template.HeatTemplate
get_heat_template = _template.get_heat_template
heat_template_file = _template.heat_template_file
HeatStackFixture = _stack.HeatStackFixture