소스 검색

changing name to platform_running

mex3 2 주 전
부모
커밋
cd429e3fff
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      apps.py
  2. 2 2
      urls.py

+ 1 - 1
apps.py

@@ -5,4 +5,4 @@ api = AuthAPI("89999999999", "1234")
 
 class PlatformrunningConfig(AppConfig):
     default_auto_field = 'django.db.models.BigAutoField'
-    name = 'platformrunning'
+    name = 'platform_running'

+ 2 - 2
urls.py

@@ -4,8 +4,8 @@ from django.urls import path, include
 from .views.home import home__view
 from .views.service_create import Service_Create__view
 
-app_name = 'platformrunning'
+app_name = 'platform_running'
 urlpatterns = [
     path("", home__view, name="home"),
     path("service_create", Service_Create__view.as_view(), name="service_create"),
-]
+]