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

11 lines
202 B
Python
Raw Normal View History

2021-09-07 14:59:52 +02:00
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()