renamed django app folder to backend

This commit is contained in:
Simon
2024-08-03 21:58:22 +02:00
parent 1d07386a06
commit a5b492fecd
124 changed files with 2 additions and 2 deletions

10
backend/task/models.py Normal file
View File

@@ -0,0 +1,10 @@
"""task model"""
from django.db import models
from django_celery_beat.models import PeriodicTask
class CustomPeriodicTask(PeriodicTask):
"""add custom metadata to task"""
task_config = models.JSONField(default=dict)