Introduction In Go, a build tag is an identifier added to a piece of code that determines when the file should be included in a package during the build process. Why Go build tags? Go does not have a preprocessor, a macro system, or a #define declaration to control the inclusion of platform-specific code. So … Continue reading Let’s build tags in go!!