def get(self, id): """ Get meal by id endpoint """ return Meal.get(id), 200
def get(self, id): return Meal.get(id), 200