diff --git a/components/control/cpp/src/master.cpp b/components/control/cpp/src/master.cpp
index cba2234c2bed6dccb2572781a2eea34f6e4c6893..004d2f7cf79741ea95b18a612d28c216540984c5 100644
--- a/components/control/cpp/src/master.cpp
+++ b/components/control/cpp/src/master.cpp
@@ -47,23 +47,23 @@ void Master::set(const ftl::UUID &peer, const string &uri, json_t &value) {
 }
 
 vector<string> Master::getConfigurables() {
-
+	return {};
 }
 
 vector<string> Master::getConfigurables(const ftl::UUID &peer) {
-
+	return {};
 }
 
 vector<json_t> Master::get(const string &uri) {
-
+	return {};
 }
 
 json_t Master::getOne(const string &uri) {
-
+	return {};
 }
 
 json_t Master::get(const ftl::UUID &peer, const string &uri) {
-
+	return {};
 }
 
 void Master::watch(const string &uri, function<void()> f) {