from django.urls import path
from . import views

app_name = 'components'

urlpatterns = [
    path('vote/', views.vote, name='vote'),
    path('vote/<str:content_type>/<str:content_id>/', views.get_vote_count, name='get_vote_count'),
]

