added logic upon connect/disconnect

This commit is contained in:
0xdcarns
2022-08-19 12:26:34 -04:00
parent c05320a323
commit 029b4fbe0c
3 changed files with 90 additions and 0 deletions

View File

@@ -142,3 +142,13 @@ func Daemon() error {
func Install() error {
return functions.Install()
}
// Connect - re-instates a connection of a node
func Connect(cfg config.ClientConfig) error {
return nil
}
// Disconnect - disconnects a connection of a node
func Disconnect(cfg config.ClientConfig) error {
return nil
}