-
-
Notifications
You must be signed in to change notification settings - Fork 43
Open
Description
In docs it appears the following code:
from wsgi import container
from masonite import Queue
class SomeCommand:
def handle(self):
queue = container.make(Queue)
queue.push(..)But wsgi module doesn't has any "container" class. I think it should be replaced with the following code.
from masonite.container import Container
from masonite import Queue
class SomeCommand:
def handle(self):
queue = Container().make(Queue)
queue.push(..)Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
No status