Add stub files from webhook app

This commit is contained in:
PCoder 2019-12-25 12:20:26 +05:30
parent 772c7557e3
commit 127c83059f
6 changed files with 14 additions and 0 deletions

0
webhook/__init__.py Normal file
View File

3
webhook/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
webhook/apps.py Normal file
View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class WebhookConfig(AppConfig):
name = 'webhook'

View File

3
webhook/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
webhook/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.