fix: Se abstrae metodo load_json

This commit is contained in:
2025-10-21 12:34:26 -05:00
parent b078ecca06
commit 532dad0ce5

7
Api/tools.py Normal file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env python3
import json
def load_json(file_path):
with open(file_path, 'r') as filejson:
return json.load(filejson)