File: stack.go

package info (click to toggle)
golang-github-bep-logg 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 256 kB
  • sloc: makefile: 9
file content (8 lines) | stat: -rw-r--r-- 135 bytes parent folder | download
1
2
3
4
5
6
7
8
package logg

import "github.com/pkg/errors"

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