mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-06 05:15:49 +01:00
8 lines
173 B
Python
Executable File
8 lines
173 B
Python
Executable File
from django.shortcuts import render, HttpResponse
|
|
|
|
|
|
# Create your views here.
|
|
|
|
def examplePlugin(request):
|
|
return HttpResponse('This is homepage of an example plugin.')
|