Add go sdk

This commit is contained in:
Oliver
2026-01-06 14:55:21 +01:00
parent 32bcd6db9e
commit e018bedca3
21 changed files with 1090 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package performancemetrics
import "runtime"
func getAllocatedMemory() uint64 {
var m runtime.MemStats
runtime.ReadMemStats(&m)
return m.Alloc
}