9bfd728d4f
Moved stuff from management commands to djeuscan.processing Signed-off-by: volpino <fox91@anche.no>
11 lines
254 B
Python
11 lines
254 B
Python
from django.core.management.base import BaseCommand
|
|
from djeuscan.processing.regen_rrds import regen_rrds
|
|
|
|
|
|
class Command(BaseCommand):
|
|
_overlays = {}
|
|
help = 'Regenerate rrd database'
|
|
|
|
def handle(self, *args, **options):
|
|
regen_rrds()
|