Tria.ge-Crawler-WIP/methods/impl/notoken_decompile.py
2025-04-12 01:40:13 -05:00

9 lines
325 B
Python

from typing import List
from methods.decompilers import Decompiler
from model.common_models import DecompileResult
class NotokenDecompiler(Decompiler):
def decompile(self, file_path: str, tags: List[str], sha256: str = "") -> DecompileResult:
# Placeholder implementation
return DecompileResult([], [])