update client

This commit is contained in:
callebtc
2023-02-07 22:08:50 +01:00
parent 455d44b607
commit 8e39666fe2
2 changed files with 14 additions and 11 deletions

11
main.py
View File

@@ -73,8 +73,9 @@ async def post():
sender_client.post(msg)
# write a DM and receive DMs
asyncio.run(dm())
# make a post and subscribe to posts
# asyncio.run(post())
if input("Enter 1 for DM, 2 for Posts (Default: 1)") or 1 == 1:
# write a DM and receive DMs
asyncio.run(dm())
else:
# make a post and subscribe to posts
asyncio.run(post())