10 lines
166 B
Python
10 lines
166 B
Python
from injectable import inject
|
|
|
|
from app.core.woodpecker import Woodpecker
|
|
|
|
|
|
class AutowireSupport:
|
|
|
|
@staticmethod
|
|
def woodpecker():
|
|
return inject(Woodpecker)
|