mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
13 lines
260 B
Python
13 lines
260 B
Python
|
|
import json
|
||
|
|
|
||
|
|
|
||
|
|
def get_latest():
|
||
|
|
with open('index.json', 'r') as file:
|
||
|
|
content = json.loads(file.read())
|
||
|
|
latest_version = list(content["versions"].keys())[0]
|
||
|
|
return latest_version
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
print(get_latest())
|