mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-17 08:02:40 +08:00
22 lines
190 B
Go
22 lines
190 B
Go
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")
|
|
|
|
}
|