Files
OpenList/test/utils_test.go

17 lines
251 B
Go
Raw Normal View History

2020-12-24 01:39:45 +08:00
package test
import (
"fmt"
"github.com/Xhofe/alist/conf"
"github.com/Xhofe/alist/utils"
"testing"
)
func TestStr(t *testing.T) {
fmt.Println(".password-"[10:])
}
func TestWriteYml(t *testing.T) {
2021-03-05 21:25:44 +08:00
utils.WriteToYml("../conf.yml", conf.Conf)
}