small fix on imports of apps.back and apps.front

This commit is contained in:
Bas Hopman 2021-04-06 23:27:18 +02:00
parent 71be23a3b9
commit 960677c4c2
2 changed files with 2 additions and 2 deletions

View File

@ -2,4 +2,4 @@ from django.apps import AppConfig
class BackConfig(AppConfig): class BackConfig(AppConfig):
name = 'back' name = 'apps.back'

View File

@ -2,4 +2,4 @@ from django.apps import AppConfig
class FrontConfig(AppConfig): class FrontConfig(AppConfig):
name = 'front' name = 'apps.front'