mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2025-01-10 00:28:42 +00:00
9 lines
214 B
Python
9 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
|