appguard-client-authentication 0.3.1

Library for AppGuard clients authentication
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::control_channel::command::ExecutableCommand;
use nullnet_liberror::Error;

pub struct HeartbeatCommand;

impl ExecutableCommand for HeartbeatCommand {
    async fn execute(self) -> Result<(), Error> {
        log::debug!("Received HeartbeatCommand");
        Ok(())
    }
}

impl HeartbeatCommand {
    pub fn new() -> Self {
        Self {}
    }
}