mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-01-14 03:22:04 +01:00
8 lines
170 B
Python
Executable File
8 lines
170 B
Python
Executable File
from django.shortcuts import render, HttpResponse
|
|
|
|
|
|
# Create your views here.
|
|
|
|
def examplePlugin(request):
|
|
return render(request, 'examplePlugin/examplePlugin.html')
|