fix default playSource and update upload manage

This commit is contained in:
mubai
2024-01-04 00:47:29 +08:00
parent 615cdf6d02
commit 31955638a5
34 changed files with 504 additions and 318 deletions

View File

@@ -51,3 +51,8 @@ func CreateBaseDir() error {
}
return nil
}
func RemoveFile(path string) error {
err := os.Remove(path)
return err
}