1// Copyright 2015, Joe Tsai. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE.md file.
4
5// +build debug,!gofuzz
6
7package internal
8
9const (
10	Debug  = true
11	GoFuzz = false
12)
13