1
0
Fork 0
mirror of https://github.com/Findus23/acronomy.git synced 2024-09-19 15:33:45 +02:00
acronomy/acros/management/commands/scss.py

10 lines
208 B
Python

from django.core.management.base import BaseCommand
from acros.utils.assets import save_css
class Command(BaseCommand):
help = 'compile scss'
def handle(self, *args, **kwargs):
save_css()