9 lines
234 B
Python
9 lines
234 B
Python
''' Application: RSForms for conceptual schemas. '''
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class RsformConfig(AppConfig):
|
|
''' Application config. '''
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.rsform'
|