mirror of
https://github.com/DataDog/go-profiler-notes.git
synced 2026-06-20 16:45:26 +08:00
Move heap example
This commit is contained in:
parent
3ef3ef8f8e
commit
78cf824c10
3 changed files with 7 additions and 2 deletions
5
examples/memory/go.mod
Normal file
5
examples/memory/go.mod
Normal 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
2
examples/memory/go.sum
Normal 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=
|
||||
|
|
@ -1,5 +1,3 @@
|
|||
// +build ignore
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
Loading…
Reference in a new issue