Add SSH command execution service

This commit is contained in:
litoral05
2026-05-05 11:13:51 +01:00
parent b71030dba8
commit 6b7b85da19
6 changed files with 135 additions and 0 deletions
@@ -0,0 +1,9 @@
package com.litoralregas.openvpn.ssh;
public record SshTestRequest(
String host,
int port,
String username,
String password
) {
}