mirror of
https://github.com/Viren070/MediaFusion.git
synced 2025-12-01 23:21:11 +01:00
7 lines
122 B
Python
7 lines
122 B
Python
import json
|
|
|
|
|
|
def get_json_data(file_name: str) -> dict:
|
|
with open(file_name) as file:
|
|
return json.load(file)
|