Files
seanime-docker/seanime-2.9.10/internal/test_utils/cache.go
2025-09-20 14:08:38 +01:00

12 lines
225 B
Go

package test_utils
import "fmt"
func GetTestDataPath(name string) string {
return fmt.Sprintf("%s/%s.json", TestDataPath, name)
}
func GetDataPath(name string) string {
return fmt.Sprintf("%s/%s.json", DataPath, name)
}