Update stubs

This commit is contained in:
Trinh Anh Ngoc
2022-10-16 16:29:55 +07:00
parent bde0aaef61
commit cb2a1c58dc
2 changed files with 20 additions and 1 deletions

View File

@@ -1,2 +1,14 @@
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,
db as db,
deploy as deploy,
genproxytoken as genproxytoken,
neutralize as neutralize,
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: ...