This commit is contained in:
2025-09-25 23:18:02 -03:00
parent 187a064687
commit eeeccaaaa8
6 changed files with 223 additions and 86 deletions

View File

@@ -0,0 +1,12 @@
import os
ROOT = os.path.abspath(os.path.dirname(__file__))
def get_file_path(name):
return os.path.join(ROOT, name)
def read_file_path(name):
with open(get_file_path(name)) as f:
return f.read()