Make log decoding build on non-Windows CI
Some checks failed
build-windows-exe / build (push) Failing after 1m43s

This commit is contained in:
messypy
2026-07-27 23:13:30 +09:00
parent dd165d9301
commit b25e002092
3 changed files with 57 additions and 33 deletions

View File

@@ -0,0 +1,7 @@
//go:build !windows
package app
func decodeWithCodePage(_ []byte, _ uint32) string {
return ""
}