mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-02 19:35:49 +01:00
10 lines
237 B
Python
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.')
|