mirror of
https://github.com/cwinfo/yggdrasil-map
synced 2024-11-10 02:20:30 +00:00
10 lines
137 B
Python
10 lines
137 B
Python
|
import json
|
||
|
|
||
|
def insert_graph_data(json_str):
|
||
|
try:
|
||
|
graph_data = json.loads(json_str)
|
||
|
except ValueError:
|
||
|
return False
|
||
|
|
||
|
return True
|