8 lines
151 B
Python
8 lines
151 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
세만틱 매퍼
|
|
"""
|
|
class SemanticMapper:
|
|
def map(self, content: str, template_info: dict) -> dict:
|
|
return {}
|