13 lines
219 B
Python
13 lines
219 B
Python
|
from masonite.providers import Provider
|
||
|
|
||
|
|
||
|
class AppProvider(Provider):
|
||
|
def __init__(self, application):
|
||
|
self.application = application
|
||
|
|
||
|
def register(self):
|
||
|
pass
|
||
|
|
||
|
def boot(self):
|
||
|
pass
|