Skip to content

Commit a627e28

Browse files
committed
add stub management command
1 parent 60d1506 commit a627e28

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# -*- coding: utf-8 -*-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# -*- coding: utf-8 -*-
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# -*- coding: utf-8 -*-
2+
from django.core.management.base import BaseCommand, CommandError
3+
4+
5+
class Command(BaseCommand):
6+
help = 'Make sure all members are in Slack and optionally kick non-members'
7+
8+
def add_arguments(self, parser):
9+
pass
10+
11+
def handle(self, *args, **options):
12+
raise NotImplemented()

0 commit comments

Comments
 (0)