You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
257B

  1. # encoding:utf-8
  2. import config
  3. from channel import channel_factory
  4. if __name__ == '__main__':
  5. # load config
  6. config.load_config()
  7. # create channel
  8. channel = channel_factory.create_channel("wx")
  9. # startup channel
  10. channel.startup()