♻️ Restructured sources and managers
This commit is contained in:
@@ -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):
|
||||
@@ -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):
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user