Upload template/processor.py
This commit is contained in:
13
03.Code/geulbeot_업로드용/handlers/template/processor.py
Normal file
13
03.Code/geulbeot_업로드용/handlers/template/processor.py
Normal 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 {}
|
||||
Reference in New Issue
Block a user