🚧 More work on managers

This commit is contained in:
GeoffreyCoulaud
2023-05-23 02:31:00 +02:00
parent 3df9380c2d
commit 9ea2e9652d
8 changed files with 57 additions and 13 deletions

View File

@@ -1,3 +1,4 @@
import src.shared as shared
from src.game import Game
from src.store.manager import Manager
from src.utils.task import Task
@@ -32,6 +33,7 @@ class Store:
games: dict[str, Game]
def __init__(self) -> None:
shared.store = self
self.managers = set()
self.games = {}
self.pipelines = {}