Files
saladeaula.digital/id.saladeaula.digital/app/util.py
2025-09-25 23:18:02 -03:00

13 lines
217 B
Python

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()