1
0
mirror of https://github.com/DataDog/go-profiler-notes.git synced 2025-07-12 23:50:13 +02:00

Move heap example

This commit is contained in:
Felix Geisendörfer
2021-01-09 17:54:57 +01:00
parent 3ef3ef8f8e
commit 78cf824c10
3 changed files with 7 additions and 2 deletions

5
examples/memory/go.mod Normal file
View File

@ -0,0 +1,5 @@
module github.com/felixge/go-profiler-notes/examples/memory
go 1.15
require golang.org/x/sync v0.0.0-20201207232520-09787c993a3a

2
examples/memory/go.sum Normal file
View File

@ -0,0 +1,2 @@
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a h1:DcqTD9SDLc+1P/r1EmRBwnVsrOwW+kk2vWf9n+1sGhs=
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=

View File

@ -1,5 +1,3 @@
// +build ignore
package main
import (