chore: add test for memory module

This commit is contained in:
wwqgtxx
2025-09-24 02:35:04 +08:00
parent 92ecdfcc00
commit 29eaa4d699
3 changed files with 44 additions and 4 deletions

View File

@@ -2,10 +2,6 @@
package memory
import "errors"
var ErrNotImplementedError = errors.New("not implemented yet")
func GetMemoryInfo(pid int32) (*MemoryInfoStat, error) {
return nil, ErrNotImplementedError
}