feat: add remote NodeService client backed by the HTTP API

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-01 13:18:31 +02:00
parent 3dfc46c3ff
commit 7292751ef7
4 changed files with 141 additions and 0 deletions

View File

@@ -19,5 +19,7 @@ type Config interface {
DeleteAlias(name string) error
ListAliases() ([]*Alias, error)
GetServerConfig() ServerConfig
// GetRemoteConfig returns the remote server address and whether remote mode is enabled.
GetRemoteConfig() (ServerConfig, bool)
Save() error
}