♻️ Restructured sources and managers

This commit is contained in:
GeoffreyCoulaud
2023-05-23 17:00:47 +02:00
parent 95524563bb
commit a11569014d
10 changed files with 17 additions and 24 deletions

View File

@@ -1,8 +1,8 @@
import src.shared as shared
from src.game import Game
from src.store.manager import Manager
from src.store.sgdb_manager import SGDBManager
from src.store.steam_api_manager import SteamAPIManager
from src.store.managers.manager import Manager
from src.store.managers.sgdb_manager import SGDBManager
from src.store.managers.steam_api_manager import SteamAPIManager
class DisplayManager(Manager):

View File

@@ -1,7 +1,7 @@
from src.game import Game
from src.store.manager import Manager
from src.store.sgdb_manager import SGDBManager
from src.store.steam_api_manager import SteamAPIManager
from src.store.managers.manager import Manager
from src.store.managers.sgdb_manager import SGDBManager
from src.store.managers.steam_api_manager import SteamAPIManager
class FileManager(Manager):

View File

@@ -1,7 +1,7 @@
from requests import HTTPError
from src.game import Game
from src.store.manager import Manager
from src.store.managers.manager import Manager
from src.utils.steamgriddb import SGDBAuthError, SGDBError, SGDBHelper

View File

@@ -1,7 +1,7 @@
from requests import HTTPError, JSONDecodeError
from src.game import Game
from src.store.manager import Manager
from src.store.managers.manager import Manager
from src.utils.steam import SteamGameNotFoundError, SteamHelper, SteamNotAGameError

View File

@@ -4,8 +4,8 @@ from gi.repository import GObject
import src.shared as shared
from src.game import Game
from src.store.manager import Manager
from src.utils.task import Task
from store.managers.manager import Manager
class Pipeline(GObject.Object):