16 lines
293 B
Python
16 lines
293 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# ITerativ GmbH
|
|
# http://www.iterativ.ch/
|
|
#
|
|
# Copyright (c) 2019 ITerativ GmbH. All rights reserved.
|
|
#
|
|
# Created on 2019-10-08
|
|
# @author: chrigu <christian.cueni@iterativ.ch>
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class UserConfig(AppConfig):
|
|
name = 'registration'
|
|
|