Add stub files from webhook app
This commit is contained in:
parent
772c7557e3
commit
127c83059f
6 changed files with 14 additions and 0 deletions
0
webhook/__init__.py
Normal file
0
webhook/__init__.py
Normal file
3
webhook/admin.py
Normal file
3
webhook/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
webhook/apps.py
Normal file
5
webhook/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class WebhookConfig(AppConfig):
|
||||
name = 'webhook'
|
0
webhook/migrations/__init__.py
Normal file
0
webhook/migrations/__init__.py
Normal file
3
webhook/models.py
Normal file
3
webhook/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
webhook/tests.py
Normal file
3
webhook/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
Loading…
Reference in a new issue