refactor: consolidate SDK Watchable with generic map/eq and rename call to fetch

This commit is contained in:
Aiden McClelland
2026-03-11 15:13:40 -06:00
parent c59c619e12
commit a782cb270b
16 changed files with 263 additions and 897 deletions

View File

@@ -12,7 +12,7 @@ export class GetContainerIp extends Watchable<string> {
super(effects)
}
protected call(callback?: () => void) {
protected fetch(callback?: () => void) {
return this.effects.getContainerIp({ ...this.opts, callback })
}
}