10 lines
153 B
Python
10 lines
153 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
def add_cert(pem: str) -> None: ...
|
||
|
|
def remove_cert() -> None: ...
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"add_cert",
|
||
|
|
"remove_cert",
|
||
|
|
]
|