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