This repository has been archived on 2024-09-18. You can view files and clone it, but cannot push or open issues or pull requests.
arka-api/api/apps.py
2023-03-06 20:27:57 +03:00

11 lines
262 B
Python
Executable File

from django.apps import AppConfig
from .api_phone_verificator import PhoneVerificationService
class ApiConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'api'
def ready(self):
PhoneVerificationService.create()