mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
8 lines
No EOL
218 B
Python
8 lines
No EOL
218 B
Python
from django.core.management.base import BaseCommand
|
|
from apps.statistics.models import MStatistics
|
|
|
|
class Command(BaseCommand):
|
|
|
|
def handle(self, *args, **options):
|
|
MStatistics.collect_statistics()
|
|
|