Files
CyberPanel/examplePlugin/views.py

10 lines
198 B
Python
Raw Normal View History

2018-10-05 00:00:06 +05:00
# -*- coding: utf-8 -*-
2019-12-10 15:09:10 +05:00
2018-10-05 00:00:06 +05:00
from django.shortcuts import render, HttpResponse
# Create your views here.
def examplePlugin(request):
return HttpResponse('This is homepage of an example plugin.')