mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-05 08:47:12 +08:00
10 lines
176 B
Go
10 lines
176 B
Go
package mutex
|
|
|
|
import (
|
|
"sync/atomic"
|
|
)
|
|
|
|
// Restart signals that the application should be restarted,
|
|
// e.g. after an update or a config changes.
|
|
var Restart = atomic.Bool{}
|