Add VPS-aware VPN IP allocation

This commit is contained in:
litoral05
2026-05-07 14:17:40 +01:00
parent a09587950e
commit c88ef29449
16 changed files with 592 additions and 1 deletions
@@ -0,0 +1,8 @@
package com.litoralregas.vpnprovisioner.vps;
public record SshCommandResult(
int exitCode,
String stdout,
String stderr
) {
}