gofmt
This commit is contained in:
parent
ebf3a9aa38
commit
6fb67141fe
1 changed files with 7 additions and 7 deletions
14
pkg.go
14
pkg.go
|
@ -10,15 +10,15 @@ import (
|
|||
|
||||
type Error struct {
|
||||
Wrapped error
|
||||
File string
|
||||
Line int
|
||||
Data interface{}
|
||||
File string
|
||||
Line int
|
||||
Data interface{}
|
||||
}
|
||||
|
||||
type LogCallback func(Error)
|
||||
|
||||
var (
|
||||
logCallback LogCallback
|
||||
logCallback LogCallback
|
||||
baseDirLength int
|
||||
)
|
||||
|
||||
|
@ -57,9 +57,9 @@ func create(err error, data interface{}) error {
|
|||
|
||||
wrapped := Error{
|
||||
Wrapped: err,
|
||||
File: file,
|
||||
Line: line,
|
||||
Data: data,
|
||||
File: file,
|
||||
Line: line,
|
||||
Data: data,
|
||||
}
|
||||
|
||||
callback(wrapped)
|
||||
|
|
Loading…
Add table
Reference in a new issue