mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +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
|