msdev 0.9.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,36 @@
1
+ """Workspace registry, portable paths, and client-side RPC helpers.
2
+
3
+ Daemon filesystem helpers intentionally live in :mod:`.access` and are not
4
+ re-exported here, so package-level names always refer to client operations.
5
+ """
6
+
7
+ from .client import (
8
+ delete_path,
9
+ glob_result,
10
+ list_directory,
11
+ read_file,
12
+ search_workspace,
13
+ stat_path,
14
+ transport_for_workspace,
15
+ workspace_params,
16
+ write_bytes,
17
+ )
18
+ from .paths import ResolvedPath, normalize_relative
19
+ from .registry import WORKSPACE_CONFIG_VERSION, Workspace, WorkspaceStore
20
+
21
+ __all__ = [
22
+ "ResolvedPath",
23
+ "WORKSPACE_CONFIG_VERSION",
24
+ "Workspace",
25
+ "WorkspaceStore",
26
+ "delete_path",
27
+ "glob_result",
28
+ "list_directory",
29
+ "normalize_relative",
30
+ "read_file",
31
+ "search_workspace",
32
+ "stat_path",
33
+ "transport_for_workspace",
34
+ "workspace_params",
35
+ "write_bytes",
36
+ ]