mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
8 lines
198 B
Go
8 lines
198 B
Go
package clean
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
// ProjectRoot references the project root directory for use in tests.
|
|
var ProjectRoot = func() string { dir, _ := filepath.Abs("../../"); return dir }()
|