diff --git a/03.Code/geulbeot_업로드용/handlers/template/processor.py b/03.Code/geulbeot_업로드용/handlers/template/processor.py new file mode 100644 index 0000000..33fb0b4 --- /dev/null +++ b/03.Code/geulbeot_업로드용/handlers/template/processor.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- +""" +템플릿 처리기 +""" +from pathlib import Path + +class TemplateProcessor: + def __init__(self): + self.templates_dir = Path(__file__).parent / 'templates' + + def get_style(self, template_id: str) -> dict: + # 템플릿 스타일 반환 로직 + return {}