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

11 lines
208 B
Python
Raw Permalink Normal View History

2020-06-02 20:10:37 +02:00
from django.core.management.base import BaseCommand
2020-06-13 21:18:58 +02:00
from acros.utils.assets import save_css
2020-06-02 20:10:37 +02:00
class Command(BaseCommand):
help = 'compile scss'
def handle(self, *args, **kwargs):
2020-06-13 21:18:58 +02:00
save_css()