mirror of
https://github.com/kovetskiy/mark.git
synced 2026-03-20 01:37:38 +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)
|
||
|
|
}
|