13 lines
127 B
Python
13 lines
127 B
Python
|
|
import logging
|
|
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
class ConnectorHandler:
|
|
|
|
def ready(self, context):
|
|
pass
|
|
|
|
|