소스 검색

feat(打卡):完成开发

geek 5 년 전
부모
커밋
b128c7a058
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  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();
 
     }
 }