
This is a middle step to move serveral parts into mistral-lib Fixes a typo on the deprecation message Changes the last actions to use mistral-lib actions Convert the serialization to use mistral-lib serialization Use mistral-lib results as the standard. (the serialization mixin change is required for the results to work) Next steps are: change mistral-lib serialization to take care of all serialization change dependent libraries to use mistral-lib directly Change-Id: I4eacf5ce2e72916b700e8bc77ac9d95859131931
23 lines
834 B
Python
23 lines
834 B
Python
# Copyright 2014 - Mirantis, Inc.
|
|
# Copyright 2015 - StackStorm, Inc.
|
|
# Copyright 2016 - Brocade Communications Systems, Inc.
|
|
#
|
|
# 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 mistral_lib.actions import types
|
|
|
|
# For backwards compatibility
|
|
|
|
Result = types.Result
|
|
ResultSerializer = types.ResultSerializer
|