Skip to content

Commit

Permalink
Create api.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Aug 7, 2024
1 parent f85c23e commit 0dbf1bc
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions sdk/api/api.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from flask import Flask, jsonify

app = Flask(__name__)

@app.route('/interoperability', methods=['POST'])
def interoperability():
# TO DO: implement interoperability logic
return jsonify({'result': 'success'})

if __name__ == '__main__':
app.run(debug=True)

0 comments on commit 0dbf1bc

Please sign in to comment.