eolas-db/src/controllers/controller.py

11 lines
252 B
Python
Raw Normal View History

2024-11-01 14:54:50 +00:00
from services.parse_file_service import ParseFileService
2024-10-31 15:41:19 +00:00
class Controller:
def __init__(self):
pass
2024-11-01 14:54:50 +00:00
def parse_entry(self, file_path):
parse_file_service = ParseFileService(file_path)
return parse_file_service.parse()