9 lines
152 B
Python
9 lines
152 B
Python
|
|
|
||
|
|
|
||
|
|
class AgentManager:
|
||
|
|
def __init__(self):
|
||
|
|
self.agents = {}
|
||
|
|
|
||
|
|
def add_agent(self, agent_id, agent):
|
||
|
|
self.agents[agent_id] = agent
|