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