refactor(adk): export backend struct types for external access#692
refactor(adk): export backend struct types for external access#692
Conversation
Need to create a new tagThe following modules have changes and may need version updates:
|
80f4ed6 to
d00cc03
Compare
Need to create a new tagThe following modules have changes and may need version updates:
|
1 similar comment
Need to create a new tagThe following modules have changes and may need version updates:
|
d1c5d60 to
d00cc03
Compare
Need to create a new tagThe following modules have changes and may need version updates:
|
419034e to
80f7cc7
Compare
Need to create a new tagThe following modules have changes and may need version updates:
|
80f7cc7 to
db4423c
Compare
Need to create a new tagThe following modules have changes and may need version updates:
|
Export struct types to enable direct type references from external packages. Main changes: - Rename sandboxToolBackend to SandboxToolBackend in agentkit package - Rename backend to Backend in local package - Update NewSandboxToolBackend() return type from filesystem.Backend interface to concrete *SandboxToolBackend - Update NewBackend() return type from filesystem.Backend interface to concrete *Backend - Update all method receivers and test assertions to use the exported type names Impact: - External packages can now access the concrete backend types directly - Enables type assertions and direct struct field access when needed - Maintains backward compatibility since the types still implement filesystem.Backend interface
db4423c to
e5a9b38
Compare
Need to create a new tagThe following modules have changes and may need version updates:
|
Export struct types to enable direct type references from external packages.
Main changes:
Impact: