Merge pull request #2 from bashopman/main

small fix on imports of apps.back and apps.front
This commit is contained in:
Andros Fenollosa 2021-04-06 23:30:01 +02:00 committed by GitHub
commit b634988b63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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'