10 lines
252 B
Python
10 lines
252 B
Python
from django.core.management.base import BaseCommand
|
|
from datetime import datetime
|
|
from BaseModels.mailSender import techSendMail
|
|
from ...funcs import parse_data
|
|
|
|
class Command(BaseCommand):
|
|
|
|
def handle(self, *args, **options):
|
|
parse_data()
|