Source code for goat.apps

from django.apps import AppConfig


[docs]class GoatConfig(AppConfig): name = 'goat' verbose_name = 'Goat'
[docs] def ready(self): import goat.signals super(GoatConfig, self).ready()