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