mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-07-23 17:00:22 +00:00

* update protogen to strip unused part * add persistent storage support * fix coding style * update linter setting * update github integration
12 lines
339 B
Go
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
|
|
}
|