mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 08:33:20 +00:00
8 lines
200 B
Python
8 lines
200 B
Python
"""Agents module."""
|
|
|
|
from .routes import agents_ns
|
|
from .sharing import agents_sharing_ns
|
|
from .webhooks import agents_webhooks_ns
|
|
|
|
__all__ = ["agents_ns", "agents_sharing_ns", "agents_webhooks_ns"]
|