diff --git a/cmd/app/main.go b/cmd/app/main.go index 2d3731f..61c68cf 100644 --- a/cmd/app/main.go +++ b/cmd/app/main.go @@ -21,6 +21,18 @@ var adminCommands = map[string]func(BotController, tgbotapi.Update, User){ "/setchannelid": handleDefaultMessage, // just type it in channel which one is supposed to be lined with bot } +var assets = map[string]string { + "Стартовая картинка": "preview_image", + "Приветственный текст": "start", + "Кнопка для заявки": "leave_ticket_button", + "ID чата": "supportchatid", + "ID канала": "channelid", + "Уведомление об отправке тикета": "sended_notify", + "Просьба оставить тикет": "leaveticket_message", + "Просьба подписаться на канал": "subscribe_message", + "Ссылка на канал": "channel_link", +} + func main() { var bc = GetBotController()