This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.core.management.base import BaseCommand | |
from django.core.mail import send_mail | |
class Command(BaseCommand): | |
help = 'Sends a test email to specified input email' | |
def add_arguments(self, parser): | |
parser.add_argument('email', type=str) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Game = { | |
canvas: null, | |
ctx : null, | |
games: [], | |
is_first_go_round: true, | |
current_game_object : { | |
current_player_name: null, | |
id: null, | |
game_name_and_id : null, | |
spectators : [], |