1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-02 20:15:24 +02:00

refactor schema folders

This commit is contained in:
hay-kot 2021-08-01 19:24:33 -08:00
parent 0e8e2971d0
commit d67240d449
49 changed files with 109 additions and 60 deletions

View file

@ -2,7 +2,7 @@ import json
import pytest
from fastapi.testclient import TestClient
from mealie.schema.settings import SiteSettings
from mealie.schema.admin import SiteSettings
from tests.app_routes import AppRoutes

View file

@ -2,7 +2,7 @@ import json
import pytest
from fastapi.testclient import TestClient
from mealie.schema.sign_up import SignUpToken
from mealie.schema.user import SignUpToken
from tests.app_routes import AppRoutes

View file

@ -2,7 +2,7 @@ import json
import pytest
from fastapi.testclient import TestClient
from mealie.schema.theme import SiteTheme
from mealie.schema.admin import SiteTheme
from tests.app_routes import AppRoutes