##// END OF EJS Templates
Prototipo de Servidor ABS concluido en SIR
Prototipo de Servidor ABS concluido en SIR

File last commit:

r387:227ac5447d6c
r387:227ac5447d6c
Show More
hello.py
19 lines | 336 B | text/x-python | PythonLexer
from django.core.management.base import BaseCommand
class Command(BaseCommand):
"""
Restart experiment every night at 05:00 am.
Example:
manage.py restart_experiment
"""
def handle(self, *args, **options):
print("Hola")
# def main():
# print("Hola")
# if __name__=='__main__':
# main()