ReMe/test/test_logo.py
jinli.yl 33b3aee540
Some checks are pending
Pre-commit / run (ubuntu-latest) (push) Waiting to run
up
2026-04-22 14:21:06 +08:00

9 lines
262 B
Python

"""test logo"""
from reme.core.schema import ServiceConfig, MCPConfig
if __name__ == "__main__":
from reme.core.utils import print_logo
c = ServiceConfig(app_name="reme", backend="mcp", mcp=MCPConfig(transport="sse"))
print_logo(service_config=c)