forked from DGNum/gestioCOF
26 lines
637 B
Python
26 lines
637 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import (absolute_import, division,
|
|
print_function, unicode_literals)
|
|
from builtins import *
|
|
|
|
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
|