Files
prysm/api/server/structs/endpoints_config.go
Preston Van Loon 6d4cd263e5 Ran gopls modernize to fix everything
go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -fix -test ./...
2025-11-13 18:56:07 -06:00

19 lines
331 B
Go

package structs
type GetDepositContractResponse struct {
Data *DepositContractData `json:"data"`
}
type DepositContractData struct {
ChainId string `json:"chain_id"`
Address string `json:"address"`
}
type GetForkScheduleResponse struct {
Data []*Fork `json:"data"`
}
type GetSpecResponse struct {
Data any `json:"data"`
}