mirror of
https://github.com/buger/goreplay.git
synced 2024-04-21 12:32:02 +00:00
11 lines
231 B
Go
11 lines
231 B
Go
package pro
|
|
|
|
// PRO this value indicates if goreplay is running in PRO mode..
|
|
// it must not be modified explicitly in production
|
|
var PRO = false
|
|
|
|
// Enable enables PRO mode. Can be used ony in tests.
|
|
func Enable() {
|
|
PRO = true
|
|
}
|