Files
seanime/internal/test_utils/cache.go
5rahim de10b49d34 feat: scanner-based torrent file analyzer
fix: fixed resultcache struct values method
2024-03-13 19:27:08 -04: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)
}