Files
CyberPanel/examplePlugin/views.py
Michael Ramsey bd71b39d31 push changes
2019-10-08 10:53:02 -04:00

10 lines
237 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.shortcuts import render, HttpResponse
# Create your views here.
def examplePlugin(request):
return HttpResponse('This is homepage of an example plugin.')