Ver código fonte

feat(打卡):完成开发

geek 5 anos atrás
pai
commit
b128c7a058
1 arquivos alterados com 3 adições e 1 exclusões
  1. 3 1
      application/index/controller/Index.php

+ 3 - 1
application/index/controller/Index.php

@@ -1,6 +1,7 @@
 <?php
 namespace app\index\controller;
 
+use app\index\service\DaKaService;
 use think\Db;
 use think\Validate;
 
@@ -40,7 +41,8 @@ class Index
 
 
     public function daka() {
-
+        $service = new DaKaService();
+        $service->run();
 
     }
 }