🚀 perf: Performance and Memory optimization

This commit is contained in:
2026-07-14 05:49:10 +07:00
parent 2c533d29f7
commit dbf318a20e
10 changed files with 300 additions and 85 deletions
+9
View File
@@ -0,0 +1,9 @@
//go:build !unix
package main
import "os"
func readFrameFile(filename string) ([]byte, error) {
return os.ReadFile(filename)
}