Replaced ioutil calls
This commit is contained in:
parent
95eea7d886
commit
54da8c1244
@ -5,7 +5,6 @@ import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"os/exec"
|
||||
|
||||
@ -58,7 +57,7 @@ func (amv *AMV) TitleByUser(user *User) string {
|
||||
func (amv *AMV) SetVideoReader(reader io.Reader) error {
|
||||
fileName := amv.ID + ".webm"
|
||||
pattern := amv.ID + ".*.webm"
|
||||
file, err := ioutil.TempFile("", pattern)
|
||||
file, err := os.CreateTemp("", pattern)
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
|
@ -1,7 +1,6 @@
|
||||
package arn
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path"
|
||||
|
||||
@ -93,7 +92,7 @@ func init() {
|
||||
}
|
||||
|
||||
// Load API keys
|
||||
data, err := ioutil.ReadFile(apiKeysPath)
|
||||
data, err := os.ReadFile(apiKeysPath)
|
||||
|
||||
if err != nil {
|
||||
panic(err)
|
||||
|
Loading…
Reference in New Issue
Block a user