mirror of
https://github.com/kovetskiy/mark.git
synced 2025-12-19 17:37:39 +08:00
10 lines
102 B
Go
10 lines
102 B
Go
|
|
package fs
|
||
|
|
|
||
|
|
import (
|
||
|
|
"io"
|
||
|
|
)
|
||
|
|
|
||
|
|
type FileSystem interface {
|
||
|
|
Open(path string) (io.ReadCloser, error)
|
||
|
|
}
|