Added Deutsche Post as a shipping carrier, including new models, admin, serializers, and API client integration. Updated Carrier and SiteConfiguration models to support Deutsche Post, including shipping price and API credentials. Added requirements for the Deutsche Post API client and dependencies.
7 lines
167 B
Python
7 lines
167 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class DeutschepostConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'thirdparty.deutschepost'
|