Added main structure

This commit is contained in:
2025-12-09 13:18:53 +01:00
parent 390f290bbd
commit 413f5b7cfc
15 changed files with 198 additions and 7 deletions

View File

@@ -0,0 +1,26 @@
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;
}
}