auth登录接口
parent
efeb753b21
commit
e3fbd63fae
|
@ -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;
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
package doctor.auth.service;
|
||||
|
||||
public class HealthService {
|
||||
}
|
Loading…
Reference in New Issue