7 lines
179 B
Python
Executable file
7 lines
179 B
Python
Executable file
from masonite.controllers import Controller
|
|
from masonite.views import View
|
|
|
|
|
|
class BlogController(Controller):
|
|
def show(self, view: View):
|
|
return view.render("blog")
|