Coverage for object_streams/apps.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.16.0, created at 2026-09-02 17:07 +0000

1"""Django application configuration for django-object-streams.""" 

2 

3from django.apps import AppConfig 

4 

5 

6__all__ = ("ObjectStreamsConfig",) 

7 

8 

9class ObjectStreamsConfig(AppConfig): 

10 name = "object_streams" 

11 verbose_name = "Django Object Streams" 

12 # The outbox cursor must stay a bigserial regardless of the host project's 

13 # DEFAULT_AUTO_FIELD. 

14 default_auto_field = "django.db.models.BigAutoField"