add example usage

This commit is contained in:
2024-02-27 23:05:55 +00:00
parent bfc86df2e8
commit 85a4049267
3 changed files with 675 additions and 0 deletions

15
main.py Normal file
View File

@@ -0,0 +1,15 @@
from __future__ import annotations
from pathlib import Path
from star_rail_relic_trimmer.load import show_relics_to_keep
def main() -> None:
file = Path(__file__).parents[0] / "data.yaml"
show_relics_to_keep(file)
if __name__ == "__main__":
main()