Update stubs

This commit is contained in:
Trinh Anh Ngoc
2022-10-16 16:29:41 +07:00
parent 7af7f6b151
commit 18f59325f8
2 changed files with 18 additions and 1 deletions

View File

@@ -1,2 +1,12 @@
from . import cloc as cloc, deploy as deploy, populate as populate, scaffold as scaffold, server as server, shell as shell, start as start, tsconfig as tsconfig
from . import (
cloc as cloc,
deploy as deploy,
genproxytoken as genproxytoken,
populate as populate,
scaffold as scaffold,
server as server,
shell as shell,
start as start,
tsconfig as tsconfig
)
from .command import Command as Command, main as main

View File

@@ -0,0 +1,7 @@
from . import Command
class GenProxyToken(Command):
command_name: str
def __init__(self) -> None: ...
def generate_token(self, length: int = ...): ...
def run(self, cmdargs) -> None: ...