Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

21 rinda
420B

  1. # encoding:utf-8
  2. import config
  3. from channel import channel_factory
  4. from common.log import logger
  5. if __name__ == '__main__':
  6. try:
  7. # load config
  8. config.load_config()
  9. # create channel
  10. channel = channel_factory.create_channel("wx")
  11. # startup channel
  12. channel.startup()
  13. except Exception as e:
  14. logger.error("App startup failed!")
  15. logger.exception(e)