9 lines
150 B
Python
9 lines
150 B
Python
from .base import BaseCommand
|
|
|
|
|
|
class Command(BaseCommand):
|
|
"""Show version"""
|
|
name = "version"
|
|
|
|
def run(self):
|
|
print("Version!")
|