unipdf/extractor/const.go

15 lines
250 B
Go
Raw Normal View History

/*
* This file is subject to the terms and conditions defined in
* file 'LICENSE.md', which is part of this source code package.
*/
2018-03-22 13:53:12 +00:00
package extractor
2019-01-22 13:44:31 +00:00
import "errors"
2018-03-22 13:53:12 +00:00
var isTesting = false
2019-01-22 13:44:31 +00:00
var (
errTypeCheck = errors.New("type check error")
)