Torma Kristóf
f907fcdf05
All checks were successful
continuous-integration/drone/push Build is passing
12 lines
255 B
Python
12 lines
255 B
Python
from redisclient import redis_client
|
|
from flask import jsonify
|
|
from flask_classful import FlaskView
|
|
|
|
|
|
class IPEndpoint(FlaskView):
|
|
|
|
def post(self):
|
|
"""Ez kell neked"""
|
|
#redis_client.set('currentConsumer', currentconsumer)
|
|
pass
|