//go:build dev || test package user // twofaProdVariant reports whether the PRODUCTION 2FA issuance/delivery // functions (twofa_prod.go, !dev && !test) are the compiled ones in this // build. Under `dev` OR `test` tags the dev/test variants (twofa_dev.go) are // compiled instead — always-allowed issuance, trivially-true delivery — so // the prod fail-closed branches are unreachable there. //lint:ignore U1000 referenced only from the prod-tag test (twofa_prod_test.go, !dev && !test); deliberately unused under dev/test tags const twofaProdVariant = false