summaryrefslogtreecommitdiff
path: root/src/tox/execute/__init__.py
blob: 58dc0cdf47fdf72b1d4f883f0414407c7ddf182a (plain)
1
2
3
4
5
6
7
8
9
10
"""
Package that handles execution of commands within tox environments.
"""
from .api import Outcome
from .request import ExecuteRequest

__all__ = (
    "ExecuteRequest",
    "Outcome",
)