discrawl/internal/cli/sync_lock_other.go
2026-05-08 09:49:13 +01:00

14 lines
286 B
Go

//go:build !unix && !windows
package cli
import "context"
func acquireSyncLock(context.Context, string) (func() error, error) {
return func() error { return nil }, nil
}
func tryAcquireSyncLock(string) (func() error, bool, error) {
return func() error { return nil }, true, nil
}