mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2025-01-09 16:18:42 +00:00
18 lines
479 B
Python
18 lines
479 B
Python
from __future__ import annotations
|
|
|
|
from abc import ABC
|
|
|
|
from ansible_collections.famedly.matrix.tests.unit.mock_nio.MatrixNioBase import (
|
|
MatrixNioBase,
|
|
)
|
|
from ansible_collections.famedly.matrix.tests.unit.mock_nio.client.ClientSuccess import (
|
|
ClientSuccess,
|
|
)
|
|
from ansible_collections.famedly.matrix.tests.unit.mock_nio.room.RoomSuccess import (
|
|
RoomSuccess,
|
|
)
|
|
|
|
|
|
@MatrixNioBase.register
|
|
class MatrixNioSuccess(ClientSuccess, RoomSuccess, MatrixNioBase):
|
|
pass
|