from django.urls import path
from . import views


urlpatterns = [
    path("<int:meal_id>", views.find_meal, name="find_meal")
]
