mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-06-23 05:27:30 +00:00
10 lines
275 B
Python
10 lines
275 B
Python
from django.core.management.base import BaseCommand
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Install builtin applets'
|
|
|
|
def handle(self, *args, **options):
|
|
from terminal.applets import install_or_update_builtin_applets
|
|
install_or_update_builtin_applets()
|