Skip to content

Instantly share code, notes, and snippets.

View tiy-curtissimo's full-sized avatar

Curtis Schlak tiy-curtissimo

View GitHub Profile
@RestController
@RequestMapping("/api/cereals")
public class CerealApiController {
private CerealRepository cerealRepo;
public CerealApiController(CerealRepository cerealRepo) {
this.cerealRepo = cerealRepo;