示例#1
0
  // TODO Make this exercise work without this initialization
  // TESTING initialize tempDatabase
  @POST
  public String initDatabase() {

    List<Deck> deckList = deckService.initDatabase();
    Gson gson = new Gson();

    return gson.toJson(deckList);
  }