mirror of
https://github.com/YuzuZensai/TrollSSH.git
synced 2026-09-13 20:19:03 +00:00
13 lines
215 B
Go
13 lines
215 B
Go
//go:build !unix
|
|
|
|
package tsf
|
|
|
|
import "os"
|
|
|
|
func readFrameFile(filename string) (*frameFile, error) {
|
|
data, err := os.ReadFile(filename)
|
|
return &frameFile{data: data}, err
|
|
}
|
|
|
|
func (f *frameFile) dropResident() {}
|