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