feat: Add nostr.json route
This commit is contained in:
parent
095f74773c
commit
efc359459c
11
server.py
11
server.py
@ -109,6 +109,17 @@ def wallet(path):
|
|||||||
|
|
||||||
return render_template('404.html'), 404
|
return render_template('404.html'), 404
|
||||||
|
|
||||||
|
@app.route('/.well-known/nostr.json')
|
||||||
|
def nostr():
|
||||||
|
# Get name parameter
|
||||||
|
name = request.args.get('name')
|
||||||
|
if not name:
|
||||||
|
return jsonify({'error': 'No name provided'})
|
||||||
|
return jsonify({
|
||||||
|
'names': {
|
||||||
|
name: 'b57b6a06fdf0a4095eba69eee26e2bf6fa72bd1ce6cbe9a6f72a7021c7acaa82'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
# Main routes
|
# Main routes
|
||||||
|
Loading…
Reference in New Issue
Block a user