From 4cbc7259cfd8f81bbb8063be1586cfb3bc489731 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EA=B2=BD=EB=AF=BC?= Date: Thu, 19 Mar 2026 13:54:31 +0900 Subject: [PATCH] Upload template/processor.py --- .../handlers/template/processor.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 03.Code/geulbeot_업로드용/handlers/template/processor.py 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 {}