import os

import django


os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'futplus.settings')
django.setup()

from accounts.create_outlook_email import CreateOutlookMail

if __name__ == '__main__':
    # this file created only for check healthy
    def create_account_bot():
        obj = CreateOutlookMail()
        obj.max_create_per_day = 24
        obj.core()


    create_account_bot()
