Upload template/processor.py

This commit is contained in:
2026-03-19 13:54:31 +09:00
parent c9f5cafa50
commit 4cbc7259cf

View File

@@ -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 {}