aboutsummaryrefslogtreecommitdiffstats
path: root/crates/daemon/proto/control.proto
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-20 17:54:34 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-20 17:54:34 +0200
commit6bd2b80be51a8623640fbd77afa1da09289e40cc (patch)
tree8fa76fc78e27a4f3d6f57af07805a83e9877f0ad /crates/daemon/proto/control.proto
parentchore: Commit (diff)
downloadatuin-6bd2b80be51a8623640fbd77afa1da09289e40cc.zip
chore: All compiles
Diffstat (limited to '')
-rw-r--r--crates/daemon/proto/control.proto10
1 files changed, 10 insertions, 0 deletions
diff --git a/crates/daemon/proto/control.proto b/crates/daemon/proto/control.proto
index 47a7b8b2..a8026cb8 100644
--- a/crates/daemon/proto/control.proto
+++ b/crates/daemon/proto/control.proto
@@ -7,6 +7,9 @@ service Control {
// Query the daemon for it's status.
rpc Status(StatusRequest) returns (StatusReply);
+
+ // Query the daemon about used paths.
+ rpc Paths(PathsRequest) returns (PathsReply);
}
message ForceSyncRequest {}
@@ -21,3 +24,10 @@ message StatusReply {
uint32 pid = 3;
uint32 protocol = 4;
}
+
+message PathsRequest {}
+message PathsReply {
+ string config = 1;
+ string db = 2;
+ string socket = 3;
+}