Skip to content

Commit 4422647

Browse files
committed
Initial commit for rewrite
1 parent f985a0f commit 4422647

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+4323
-1585
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tests/_data/** filter=lfs diff=lfs merge=lfs -text

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ dist/
66
*.pyc
77
__pycache__/
88
.pytest_cache/
9-
tests/docs/api
10-
tests/docs/build
9+
tests/_docs/api
10+
tests/_docs/build
1111
.tox/

dissect/vmfs/__init__.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
1-
from dissect.vmfs.exceptions import (
1+
from dissect.vmfs.descriptor import DirEntry, FileDescriptor
2+
from dissect.vmfs.exception import (
23
Error,
34
FileNotFoundError,
45
InvalidHeader,
56
NotADirectoryError,
67
NotASymlinkError,
78
)
8-
from dissect.vmfs.lvm import LVM, Extent
9+
from dissect.vmfs.lvm import LVM, Device, Volume
910
from dissect.vmfs.vmfs import VMFS
1011

1112
__all__ = [
1213
"LVM",
1314
"VMFS",
15+
"Device",
16+
"DirEntry",
1417
"Error",
15-
"Extent",
18+
"FileDescriptor",
1619
"FileNotFoundError",
1720
"InvalidHeader",
1821
"NotADirectoryError",
1922
"NotASymlinkError",
23+
"Volume",
2024
]

0 commit comments

Comments
 (0)