mirror of
https://github.com/kovetskiy/mark.git
synced 2025-07-05 19:42:44 +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)
|
|
}
|