Files
bootdev_python_agent/tests.py
2025-08-04 17:35:26 +02:00

17 lines
342 B
Python

from functions.get_file_content import get_file_content
def test():
result = get_file_content("calculator", "main.py")
print(result)
result = get_file_content("calculator", "pkg/calculator.py")
print(result)
result = get_file_content("calculator", "/bin/cat")
print(result)
if __name__ == "__main__":
test()