Skip to content

Commit 86762d3

Browse files
committed
Make the django app more uniquely named
1 parent abd73b9 commit 86762d3

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

graphql_ws/django/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
default_app_config = "graphql_ws.django.apps.GraphQLChannelsApp"

graphql_ws/django/apps.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from django.apps import AppConfig
2+
3+
4+
class GraphQLChannelsApp(AppConfig):
5+
name = "graphql_ws.django"
6+
label = "graphql_channels"

0 commit comments

Comments
 (0)