mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2025-01-10 08:38:42 +00:00
10 lines
214 B
Python
10 lines
214 B
Python
|
from __future__ import annotations
|
||
|
|
||
|
import abc
|
||
|
|
||
|
from ansible_collections.famedly.matrix.tests.unit.mock_nio.client import success
|
||
|
|
||
|
|
||
|
class ClientSuccess(success.ClientLogin, success.ClientLogout, abc.ABC):
|
||
|
pass
|