16 lines
362 B
Java
16 lines
362 B
Java
package com.kamco.cd.kamcoback.auth;
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
@RestController
|
|
@RequestMapping("/api/auth")
|
|
public class AuthApiController {
|
|
|
|
@PostMapping("/signup")
|
|
public void signup() {
|
|
|
|
}
|
|
}
|