Update endpoints /get_endpoints.py
Browse files
endpoints /get_endpoints.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
from flask import jsonify
|
| 2 |
import random
|
| 3 |
-
from
|
| 4 |
|
| 5 |
def get_users():
|
| 6 |
return jsonify({"users": shared_data["users"]})
|
|
|
|
| 1 |
from flask import jsonify
|
| 2 |
import random
|
| 3 |
+
from app import shared_data
|
| 4 |
|
| 5 |
def get_users():
|
| 6 |
return jsonify({"users": shared_data["users"]})
|