mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-31 20:19:43 +00:00
14 lines
214 B
Python
14 lines
214 B
Python
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from .file import File
|
|
from .folder import Folder
|
|
|
|
|
|
@dataclass
|
|
class Case:
|
|
source: Folder | File
|
|
expected: Folder | File
|
|
name: str
|