templates property

default templates

Implementation

static List<TelegramClientProjectTemplate> get templates {
  return [
    TelegramClientProjectTemplate(
      name: "Bot",
      is_application: false,
      scripts: () {
        return telegram_bot_telegram_client_script_generators;
      },
    ),
    TelegramClientProjectTemplate(
      name: "Telegram Application",
      is_application: true,
      scripts: () {
        return telegram_app_telegram_client_script_generators;
      },
    ),
    TelegramClientProjectTemplate(
      name: "Userbot",
      is_application: false,
      scripts: () {
        return telegram_userbot_telegram_client_script_generators;
      },
    ),
  ];
}