15 lines
330 B
Python
15 lines
330 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from __future__ import (absolute_import, division,
|
||
|
print_function, unicode_literals)
|
||
|
from builtins import *
|
||
|
|
||
|
from django.apps import AppConfig
|
||
|
|
||
|
class KFetConfig(AppConfig):
|
||
|
name = 'kfet'
|
||
|
verbose_name = "Application K-Fêt"
|
||
|
|
||
|
def ready(self):
|
||
|
import kfet.signals
|