Skip to content

Commit

Permalink
fix: add type for local engine
Browse files Browse the repository at this point in the history
  • Loading branch information
vansangpfiev committed Dec 19, 2024
1 parent 965a0c8 commit 0139fd2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engine/common/engine_servicei.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ struct EngineVariantResponse {
root["name"] = name;
root["version"] = version;
root["engine"] = engine;
root["type"] = "local";
return root;
}
};
Expand Down Expand Up @@ -58,6 +59,6 @@ class EngineServiceI {
GetEngineByNameAndVariant(
const std::string& engine_name,
const std::optional<std::string> variant = std::nullopt) = 0;

virtual bool IsRemoteEngine(const std::string& engine_name) = 0;
};

0 comments on commit 0139fd2

Please sign in to comment.