mirror of
https://github.com/remnawave/python-sdk.git
synced 2026-05-13 12:16:42 +00:00
11 lines
310 B
Python
11 lines
310 B
Python
from remnawave_api.models import PubKeyResponseDto
|
|
from remnawave_api.rapid import BaseController, get
|
|
|
|
|
|
class KeygenController(BaseController):
|
|
@get("/keygen", response_class=PubKeyResponseDto)
|
|
async def generate_key(
|
|
self,
|
|
) -> PubKeyResponseDto:
|
|
"""Get Public Key"""
|
|
...
|