mirror of
https://github.com/talgo-cloud/bimg.git
synced 2026-03-08 23:18:19 -07:00
11 lines
196 B
Go
11 lines
196 B
Go
package bimg
|
|
|
|
import "io/ioutil"
|
|
|
|
func Read(path string) ([]byte, error) {
|
|
return ioutil.ReadFile(path)
|
|
}
|
|
|
|
func Write(path string, buf []byte) error {
|
|
return ioutil.WriteFile(path, buf, 0644)
|
|
}
|