Files
“shengyudong” 322ac74336 2025-12-25 upload
2025-12-25 11:16:59 +08:00

10 lines
153 B
Python

from __future__ import annotations
def add_cert(pem: str) -> None: ...
def remove_cert() -> None: ...
__all__ = [
"add_cert",
"remove_cert",
]