File: stack.go

package info (click to toggle)
golang-github-apex-log 1.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, bullseye, experimental, sid, trixie
  • size: 316 kB
  • sloc: makefile: 4
file content (8 lines) | stat: -rw-r--r-- 134 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
package log

import "github.com/pkg/errors"

// stackTracer interface.
type stackTracer interface {
	StackTrace() errors.StackTrace
}