auth登录接口

pull/2/head
chenbingxuan 2024-01-08 18:47:58 +08:00
parent efeb753b21
commit e3fbd63fae
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package doctor.auth.controller;
import doctor.auth.service.HealthService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HealthController {
@Autowired
private HealthService healthService;
}

View File

@ -0,0 +1,4 @@
package doctor.auth.service;
public class HealthService {
}