auto name gen

This commit is contained in:
2026-06-24 16:52:55 -04:00
parent 54b0c5cb8c
commit 144625cb5b
7 changed files with 14595 additions and 10 deletions

View File

@@ -40,8 +40,8 @@ def select(title, options):
return questionary.select(title, options).ask()
def text(title):
return questionary.text(title).ask()
def text(title, default):
return questionary.text(title, default=default).ask()
def confirm(title):