♻️(backend) avoid repeating 'service' in python modules

These modules are already stored under the 'service' folder, it was redundant.
Renamed these files based on @lunika feedbacks.
This commit is contained in:
lebaudantoine
2025-03-07 18:25:09 +01:00
committed by aleb_the_flash
parent 2503411311
commit fbee41f5dd
12 changed files with 40 additions and 44 deletions
@@ -14,7 +14,7 @@ from rest_framework.test import APIClient
from ... import utils
from ...factories import RoomFactory, UserFactory
from ...models import RoomAccessLevel
from ...services.lobby_service import (
from ...services.lobby import (
LobbyService,
)
@@ -12,7 +12,7 @@ from unittest import mock
import pytest
from livekit import api
from ...services.livekit_events_service import ActionFailedError, LiveKitEventsService
from ...services.livekit_events import ActionFailedError, LiveKitEventsService
@pytest.fixture