2024-05-17 15:23:35 +02:00
|
|
|
from .client import * # noqa
|
|
|
|
from .user import * # noqa
|
|
|
|
from .product import * # noqa
|
|
|
|
from .meal import * # noqa
|
|
|
|
from .entry import * # noqa
|
2024-05-20 12:10:17 +02:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def anyio_backend():
|
|
|
|
return "asyncio"
|