1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-20 16:53:44 +02:00
RPGnotes/common/management/commands/scss.py

10 lines
202 B
Python

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