summaryrefslogtreecommitdiff
path: root/src/tox/execute/__init__.py
blob: fd880b5334e6a7c0cbef1bb5c17ed4c33a7816c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""
Package that handles execution of commands within tox environments.
"""
from __future__ import annotations

from .api import Outcome
from .request import ExecuteRequest

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