debug and vscode debug launch

This commit is contained in:
redanthrax
2022-06-15 14:42:40 -07:00
parent ecddc2fe21
commit d1df98ad3e
5 changed files with 33 additions and 0 deletions

5
shared/debug.go Normal file
View File

@@ -0,0 +1,5 @@
//go:build DEBUG
package shared
const DEBUG = true

5
shared/nodebug.go Normal file
View File

@@ -0,0 +1,5 @@
//go:build !DEBUG
package shared
const DEBUG = false