import os

import django


os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'futplus.settings')
django.setup()

from accounts.create_outlook_email import CreateOutlookMail

if __name__ == '__main__':
    def create_account_bot():
        CreateOutlookMail().core()


    create_account_bot()
