6 lines
205 B
Python
6 lines
205 B
Python
|
|
"""Memory management API — 二期扩展位,一期以内部 MemoryService 为主。"""
|
||
|
|
|
||
|
|
from fastapi import APIRouter
|
||
|
|
|
||
|
|
router = APIRouter(prefix="/api/memory", tags=["memory"], include_in_schema=False)
|