summaryrefslogtreecommitdiff
path: root/daemon
diff options
context:
space:
mode:
Diffstat (limited to 'daemon')
-rw-r--r--daemon/src/daemon.cpp12
1 files changed, 1 insertions, 11 deletions
diff --git a/daemon/src/daemon.cpp b/daemon/src/daemon.cpp
index 99da92c..449292d 100644
--- a/daemon/src/daemon.cpp
+++ b/daemon/src/daemon.cpp
@@ -10,18 +10,8 @@
int main(int, char **)
{
rpc::server server(hwd::internal::default_port);
- Assembly assembly {server};
Gpio gpio;
+ Assembly assembly {server};
assembly.add("gpio", gpio);
- server.bind("stop_server", []{
- rpc::this_server().stop();
- });
- int value = 0;
- server.bind("set_value", [&value](int a){
- value = a;
- });
- server.bind("get_value", [&value](){
- return value;
- });
server.run();
}