init: build minimum viable version

This commit is contained in:
zhayujie
2022-08-10 00:04:10 +08:00
commit 1ec0a530bf
16 changed files with 161 additions and 0 deletions

10
app.py Normal file
View File

@@ -0,0 +1,10 @@
from channel import channel_factory
if __name__ == '__main__':
# create channel
channel = channel_factory.create_channel("wx")
# startup channel
channel.startup()
print("Hello bot")