Files
dynamix-golang-sdk/interfaces/request.go

8 lines
147 B
Go
Raw Normal View History

2026-06-19 17:42:24 +03:00
package interfaces
// Interface to valiate RAM values
type RequestWithRAM interface {
// GetRAM returns RAM values
GetRAM() map[string]uint64
}