mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-28 01:29:41 +02:00
9 lines
127 B
Python
9 lines
127 B
Python
|
from pytest import fixture
|
||
|
|
||
|
from tests import utils
|
||
|
|
||
|
|
||
|
@fixture(scope="session")
|
||
|
def api_routes():
|
||
|
return utils.AppRoutes()
|