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