9 lines
147 B
Python
9 lines
147 B
Python
from .base import BaseCommand
|
|
|
|
|
|
class Command(BaseCommand):
|
|
"""Send an alert"""
|
|
name = "alert"
|
|
|
|
def run(self):
|
|
print("Alert!")
|