9 lines
198 B
Python
9 lines
198 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from django.apps import AppConfig
|
|
|
|
class LostplacesAppConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.AutoField'
|
|
name = 'lostplaces'
|