go-profiler-notes/examples/callers-func-length/main.go
Felix Geisendörfer f8f6e88e3a callers-func-length
2021-04-03 12:47:19 +02:00

17 lines
167 B
Go

package main
import (
"fmt"
"os"
)
func main() {
if err := run(); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}
func run() error {
return nil
}