feat: help message

This commit is contained in:
Tony Yang
2023-05-03 15:38:12 +08:00
parent 8eed050252
commit d804efb7ba

View File

@@ -170,6 +170,11 @@ async def main(loop):
print(f"Upload request {filename} sent!")
elif command == "q":
break
else:
print("Commands:")
print("p: take picture and upload to S3")
print("h: help message")
print("q: quit")
loop.stop()