kenken999 commited on
Commit
50f3473
·
1 Parent(s): b980d27
controllers/gpt_enginner20240701185142 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit ea725766b73c40c7f1a3fd23c7eebe83dcbb793b
controllers/gpt_enginner20240701185253 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 5d791392e7a22ef94675d632b5404057f0881bdf
controllers/gpt_enginner20240701190541 ADDED
@@ -0,0 +1 @@
 
 
1
+ Subproject commit 4dc02f997e1c5765a5ce0df1a7e2ff46e18cf86c
workspace/workspace/zendesk_app/__init__.py ADDED
File without changes
workspace/workspace/zendesk_app/admin.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.contrib import admin
2
+
3
+ # Register your models here.
workspace/workspace/zendesk_app/apps.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from django.apps import AppConfig
2
+
3
+
4
+ class ZendeskAppConfig(AppConfig):
5
+ default_auto_field = 'django.db.models.BigAutoField'
6
+ name = 'zendesk_app'
workspace/workspace/zendesk_app/migrations/__init__.py ADDED
File without changes
workspace/workspace/zendesk_app/models.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.db import models
2
+
3
+ # Create your models here.
workspace/workspace/zendesk_app/tests.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.test import TestCase
2
+
3
+ # Create your tests here.
workspace/workspace/zendesk_app/views.py ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ from django.shortcuts import render
2
+
3
+ # Create your views here.