Merge branch 'master' of http://nitta-lab-www.is.konan-u.ac.jp/gitbucket/git/nitta-lab-2024/CitrusServer into AccountsRest
commit b8c3bc4f94249ba52c395dd10e2e436a8eabd9bc
2 parents ab0e78e + 0090faa
r-nishimura authored on 2 May
Showing 1 changed file
View
14
src/main/java/org/ntlab/citrusserver/resources/BooksRest.java
package org.ntlab.citrusserver.resources;
 
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import org.springframework.stereotype.Component;
 
@Path("/accounts")
@Component
public class BooksRest {
@GET
@Produces(MediaType.TEXT_PLAIN)//returnの形をどうするか
public String getAccounts() {
return null;
}
}