cuelang.org/go@v0.10.1/internal/golangorgx/telemetry/crashmonitor/crash_go123.go (about)

     1  // Copyright 2024 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build go1.23
     6  // +build go1.23
     7  
     8  package crashmonitor
     9  
    10  import (
    11  	"os"
    12  	"runtime/debug"
    13  )
    14  
    15  func init() {
    16  	setCrashOutput = func(f *os.File) error { return debug.SetCrashOutput(f, debug.CrashOptions{}) }
    17  
    18  }