Luxx/luxx/agents/__init__.py

6 lines
151 B
Python

"""Agents package"""
from luxx.agents.base import BaseAgent
from luxx.agents.registry import agent_registry
__all__ = ["BaseAgent", "agent_registry"]