mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-23 18:13:54 +03:00
13 lines
232 B
Python
13 lines
232 B
Python
try:
|
|
from blinker import Signal
|
|
except ImportError:
|
|
class Signal(object):
|
|
|
|
def send(self, *args, **kwargs):
|
|
pass
|
|
|
|
init_schema = Signal()
|
|
class_prepared = Signal()
|
|
pre_init = Signal()
|
|
post_init = Signal()
|