mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
9 lines
176 B
Go
9 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{}
|