Files
TrollSSH/src/mmap_other.go
T

10 lines
131 B
Go
Raw Normal View History

2026-07-14 05:49:10 +07:00
//go:build !unix
package main
import "os"
func readFrameFile(filename string) ([]byte, error) {
return os.ReadFile(filename)
}