Xiaokang Wang (Shelikhoo) 78cd513b82
Add Persistent Storage Support to V2Ray (#3300)
* update protogen to strip unused part

* add persistent storage support

* fix coding style

* update linter setting

* update github integration
2025-02-05 20:36:40 +00:00

12 lines
339 B
Go

package filesystemcap
import "github.com/v2fly/v2ray-core/v5/common/platform/filesystem/fsifce"
type FileSystemCapabilitySet interface {
OpenFileForReadSeek() fsifce.FileSeekerFunc
OpenFileForRead() fsifce.FileReaderFunc
OpenFileForWrite() fsifce.FileWriterFunc
ReadDir() fsifce.FileReadDirFunc
RemoveFile() fsifce.FileRemoveFunc
}