mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 00:22:41 +08:00
update
This commit is contained in:
21
file_store/file_store.go
Normal file
21
file_store/file_store.go
Normal file
@ -0,0 +1,21 @@
|
||||
package filestore
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"io"
|
||||
"os"
|
||||
)
|
||||
|
||||
func New() {
|
||||
f, err := os.Open("")
|
||||
|
||||
_ = err
|
||||
_ = f
|
||||
|
||||
}
|
||||
|
||||
func Store(name string, reader io.Reader) error {
|
||||
|
||||
return errors.New("abc")
|
||||
|
||||
}
|
Reference in New Issue
Block a user