16 lines
209 B
Python
16 lines
209 B
Python
import json
|
|
import logging
|
|
|
|
def GetVerify():
|
|
"""
|
|
|
|
"""
|
|
|
|
# Implement your business logic here
|
|
# All the parameters are present in the options argument
|
|
|
|
return json.dumps("<integer>"), 200
|
|
|
|
|
|
|