* Document extractor service * Fixing vendor modules * Addressing PR Review comments * Some small simplifications * Fixing a linter complain * simplifying a bit the code using package variables Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
13 строки
242 B
Go
13 строки
242 B
Go
// Copyright 2015, Joe Tsai. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE.md file.
|
|
|
|
// +build debug,!gofuzz
|
|
|
|
package internal
|
|
|
|
const (
|
|
Debug = true
|
|
GoFuzz = false
|
|
)
|