mirror of
https://github.com/nikdoof/django-evesde.git
synced 2025-12-18 20:29:23 +00:00
8 lines
265 B
Python
8 lines
265 B
Python
from django.core.management.base import BaseCommand
|
|
from evesde.eveapi.eve import import_conquerable_stations
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Imports outposts from the EVE API.'
|
|
|
|
def handle(self, *args, **options):
|
|
import_conquerable_stations() |