()
| 18 | type mem struct{} |
| 19 | |
| 20 | func (mem) TotalMemory() uint64 { |
| 21 | return memory.TotalMemory() |
| 22 | } |
| 23 | |
| 24 | // NewMemory returns a Memory instance that calls memory.TotalMemory under the hood. |
| 25 | func NewMemory() Memory { |
nothing calls this directly
no test coverage detected