discrawl/internal/cli/sync_lock_other.go
2026-04-29 14:43:53 +01:00

10 lines
174 B
Go

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