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.

13 lines
239B

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