new Telegram.Telegram(config.botToken, { workers: 1 })
.router
.when('/start', new Help())
.when(/\/e\s?(.*)/, new Epg())
.when('/f', new Find())
.when('/c', new Channels())
.when('/l', new List())
.when('/h', new Help())
.when('/d :id', new Details())
.when('/r :id', new Related())
.when('/p', new Provider())
.when(/\/w\s?(.*)/, new TimeTable())
.otherwise(new WrongCommand());