10 lines
288 B
Python
10 lines
288 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class GopayConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
# Must be the full dotted path to this app package
|
|
name = 'thirdparty.gopay'
|
|
# Optional short label used in DB table names and admin
|
|
label = 'gopay'
|