Commit a352880e authored by Mickaël Desfrênes's avatar Mickaël Desfrênes
Browse files

add autoupdate app

parent 8a5047da
Loading
Loading
Loading
Loading

autoupdate/__init__.py

0 → 100644
+1 −0
Original line number Diff line number Diff line
endpoint = "autoupdate/"

autoupdate/admin.py

0 → 100644
+3 −0
Original line number Diff line number Diff line
from django.contrib import admin

# Register your models here.

autoupdate/apps.py

0 → 100644
+6 −0
Original line number Diff line number Diff line
from django.apps import AppConfig


class AutoupdateConfig(AppConfig):
    default_auto_field = "django.db.models.BigAutoField"
    name = "autoupdate"
+0 −0

Empty file added.

autoupdate/models.py

0 → 100644
+3 −0
Original line number Diff line number Diff line
from django.db import models

# Create your models here.
Loading