diff options
author | Wolfy-J <[email protected]> | 2018-06-10 20:31:05 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-10 20:31:05 +0300 |
commit | ed3a0f2bb25077c7a32a54ddb3754f04ffbdccf3 (patch) | |
tree | 9a579e6ce81e7af5e3844fbcf590f9c8db26d90a /debug/config.go | |
parent | ade5cc504e2b082d0838cc93c3a185246fdc7834 (diff) |
debug mode have been added
Diffstat (limited to 'debug/config.go')
-rw-r--r-- | debug/config.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/debug/config.go b/debug/config.go new file mode 100644 index 00000000..54ec9bf5 --- /dev/null +++ b/debug/config.go @@ -0,0 +1,7 @@ +package debug + +// Config enabled and disabled debug service. +type Config struct { + // Enable must be set to true to enable debugging. + Enable bool +} |