from channels import Group from channels.generic.websockets import JsonWebsocketConsumer class KPsul(JsonWebsocketConsumer): # Set to True if you want them, else leave out strict_ordering = False slight_ordering = False def connection_groups(self, **kwargs): return ['kfet.kpsul'] def connect(self, message, **kwargs): pass def receive(self, content, **kwargs): pass def disconnect(self, message, **kwargs): pass