mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 16:24:31 -04: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()
|