27 lines
502 B
Java
27 lines
502 B
Java
package be.naaturel.boardmateapi.controllers;
|
|
|
|
import org.apache.coyote.Response;
|
|
import org.springframework.http.ResponseEntity;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
@RestController
|
|
public class PartyController {
|
|
|
|
|
|
public PartyController(){
|
|
|
|
}
|
|
|
|
public ResponseEntity<?> CreateParty(){
|
|
return null;
|
|
}
|
|
|
|
public ResponseEntity<?> RetrieveParty(int id){
|
|
return null;
|
|
}
|
|
|
|
public ResponseEntity<?> AddMove(){
|
|
return null;
|
|
}
|
|
}
|