9 lines
325 B
Python
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([], [])
|