7 lines
110 B
Python
7 lines
110 B
Python
from django.tasks import task
|
|
from .deployments import sync_repos
|
|
|
|
|
|
@task
|
|
def update_user():
|
|
sync_repos()
|