Initial commit.
[django-ssify.git] / ssify / management / commands / ssify_nginx_conf.py
1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 from optparse import make_option
6 from django.core.management.base import BaseCommand
7
8
9 class Command(BaseCommand):
10     option_list = BaseCommand.option_list + (
11     )
12     help = 'Dumps configuration for NGINX.'
13
14     def handle(self, **options):
15         pass