mirror of
https://github.com/pinry/pinry.git
synced 2025-11-16 09:55:50 +01:00
10 lines
196 B
Python
10 lines
196 B
Python
|
|
from django.apps import AppConfig
|
||
|
|
|
||
|
|
|
||
|
|
class PinryPluginsConfig(AppConfig):
|
||
|
|
name = 'pinry_plugins'
|
||
|
|
|
||
|
|
def ready(self):
|
||
|
|
from pinry_plugins import builder # noqa
|
||
|
|
builder.init()
|