14 lines
306 B
Python
14 lines
306 B
Python
# -*- 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 {}
|