Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 0139fd2

Browse files
committed
fix: add type for local engine
1 parent 965a0c8 commit 0139fd2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

engine/common/engine_servicei.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ struct EngineVariantResponse {
3131
root["name"] = name;
3232
root["version"] = version;
3333
root["engine"] = engine;
34+
root["type"] = "local";
3435
return root;
3536
}
3637
};
@@ -58,6 +59,6 @@ class EngineServiceI {
5859
GetEngineByNameAndVariant(
5960
const std::string& engine_name,
6061
const std::optional<std::string> variant = std::nullopt) = 0;
61-
62+
6263
virtual bool IsRemoteEngine(const std::string& engine_name) = 0;
6364
};

0 commit comments

Comments
 (0)