Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 2 ans
1234567891011121314
  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()