Skip to content

Commit 19e52f0

Browse files
committed
Use latest db models location.
1 parent c2ab058 commit 19e52f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

goosebit/ui/bff/download/routes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from fastapi.requests import Request
33
from fastapi.responses import FileResponse, RedirectResponse
44

5-
from goosebit.models import Software
5+
from goosebit.db.models import Software
66

77
router = APIRouter(prefix="/download", tags=["download"])
88

goosebit/ui/bff/software/routes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from goosebit.api.v1.software import routes
99
from goosebit.auth import validate_user_permissions
10-
from goosebit.models import Rollout, Software
10+
from goosebit.db.models import Rollout, Software
1111
from goosebit.settings import config
1212
from goosebit.updates import create_software_update
1313

0 commit comments

Comments
 (0)