BuildScript/scripts/TouchinBuild/Core/FileContentProvider.py

10 lines
149 B
Python

class FileContentProvider:
def __init__(self):
pass
def fetchContent(self, path):
file = open(path)
content = file.read()
return content