summaryrefslogtreecommitdiffstats
path: root/src/debputy/plugin/debputy/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/debputy/plugin/debputy/types.py')
-rw-r--r--src/debputy/plugin/debputy/types.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/debputy/plugin/debputy/types.py b/src/debputy/plugin/debputy/types.py
new file mode 100644
index 0000000..dc8d0ce
--- /dev/null
+++ b/src/debputy/plugin/debputy/types.py
@@ -0,0 +1,10 @@
+import dataclasses
+
+from debputy.manifest_parser.base_types import FileSystemMode
+
+
+@dataclasses.dataclass(slots=True)
+class DebputyCapability:
+ capabilities: str
+ capability_mode: FileSystemMode
+ definition_source: str