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

8 lines
147 B
Go
Raw Normal View History

2025-09-23 14:34:24 +03:00
package interfaces
// Interface to valiate RAM values
type RequestWithRAM interface {
// GetRAM returns RAM values
GetRAM() map[string]uint64
}