mirror of
https://github.com/42wim/matterbridge
synced 2024-11-11 01:10:38 +00:00
9 lines
134 B
Go
9 lines
134 B
Go
|
package log
|
||
|
|
||
|
import "github.com/pkg/errors"
|
||
|
|
||
|
// stackTracer interface.
|
||
|
type stackTracer interface {
|
||
|
StackTrace() errors.StackTrace
|
||
|
}
|