chore: add util scripts

This commit is contained in:
mokurin000
2025-07-31 20:28:44 +08:00
parent 789d46991d
commit b408d1ba51

11
utils/get_last_uid.py Normal file
View File

@@ -0,0 +1,11 @@
import json
def main():
with open("players.json", "r", encoding="utf-8") as f:
d = json.load(f)
print(d[-1]["userId"])
if __name__ == "__main__":
main()