Browse Source

Update 'README.md'

天问 1 week ago
parent
commit
bd605f36bf
1 changed files with 12 additions and 2 deletions
  1. 12 2
      README.md

+ 12 - 2
README.md

@@ -5,5 +5,15 @@
 ```
 
 app = typer.Typer(pretty_exceptions_enable=False)
-app.command(name="run")(run)
-```
+
+
+@cli.command()
+@typer_async
+async def account_payout_schedule() -> None:
+    pass
+
+if __name__ == "__main__":
+    cli()
+    
+```
+