summaryrefslogtreecommitdiffstats
path: root/api/api/blogs/views.py
blob: 69a6f2983260692cf59d6f0f575aa4c3d77c8d10 (plain)
1
2
3
4
5
6
7
from django.shortcuts import render
from django.http import HttpResponse

def index(request):
    return HttpResponse("You're at the Blogs index")

# Create your views here.