diff --git a/djangoldp_webpushnotification/admin.py b/djangoldp_webpushnotification/admin.py deleted file mode 100644 index acec33d..0000000 --- a/djangoldp_webpushnotification/admin.py +++ /dev/null @@ -1,4 +0,0 @@ -from django.contrib import admin -from .models import ExampleModel - -admin.site.register(ExampleModel) diff --git a/djangoldp_webpushnotification/apps.py b/djangoldp_webpushnotification/apps.py deleted file mode 100644 index cfb5ce2..0000000 --- a/djangoldp_webpushnotification/apps.py +++ /dev/null @@ -1,4 +0,0 @@ -from django.apps import AppConfig - -class DjangoldpExampleConfig(AppConfig): - name = 'djangoldp_example' diff --git a/djangoldp_webpushnotification/factories.py b/djangoldp_webpushnotification/factories.py deleted file mode 100644 index 41838f7..0000000 --- a/djangoldp_webpushnotification/factories.py +++ /dev/null @@ -1,12 +0,0 @@ -import factory -import hashlib -from .models import ExampleModel -from django.db.models.signals import post_save - -@factory.django.mute_signals(post_save) -class ExampleFactory(factory.django.DjangoModelFactory): - class Meta: - model = ExampleModel - - # Please refer to Factory boy documentation - # https://factoryboy.readthedocs.io diff --git a/djangoldp_webpushnotification/management/__init__.py b/djangoldp_webpushnotification/management/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/djangoldp_webpushnotification/management/commands/__init__.py b/djangoldp_webpushnotification/management/commands/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/djangoldp_webpushnotification/management/commands/mock_example.py b/djangoldp_webpushnotification/management/commands/mock_example.py deleted file mode 100644 index 2b0ac09..0000000 --- a/djangoldp_webpushnotification/management/commands/mock_example.py +++ /dev/null @@ -1,12 +0,0 @@ -from django.core.management.base import BaseCommand, CommandError -from djangoldp_example.factories import ExampleFactory - -class Command(BaseCommand): - help = 'Mock data' - - def add_arguments(self, parser): - parser.add_argument('--size', type=int, default=0, help='Number of example to create') - - def handle(self, *args, **options): - ExampleFactory.create_batch(options['size'], thread=thread) - self.stdout.write(self.style.SUCCESS('Successful data mock install')) diff --git a/djangoldp_webpushnotification/models.py b/djangoldp_webpushnotification/models.py deleted file mode 100644 index 1b20ddd..0000000 --- a/djangoldp_webpushnotification/models.py +++ /dev/null @@ -1,4 +0,0 @@ -from django.db import models - -class ExampleModel(models.Model): - # Please refer to Django documentation