IndexController.php 382 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. namespace SixShop\TencentCloudSms\Controller;
  4. use SixShop\TencentCloudSms\Config;
  5. use think\Response;
  6. use function SixShop\Core\success_response;
  7. class IndexController
  8. {
  9. /**
  10. * 获取模板列表
  11. */
  12. public function template(Config $config): Response
  13. {
  14. return success_response($config->tencent_sms_templates);
  15. }
  16. }