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