mirror of
https://github.com/stashapp/stash.git
synced 2025-12-13 03:44:10 +01:00
* Add xpath performer and scene scraping * Add studio scraping * Refactor code * Fix compile error * Don't overwrite performer URL during a scrape
9 lines
105 B
Go
9 lines
105 B
Go
// +build go1.10
|
|
|
|
package xpath
|
|
|
|
import "math"
|
|
|
|
func round(f float64) int {
|
|
return int(math.Round(f))
|
|
}
|