mirror of
https://github.com/kovetskiy/mark.git
synced 2025-05-25 14:32:40 +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)
|
|
}
|