feat: polish & windviz & deploy
This commit is contained in:
parent
81b8e763bd
commit
465ad00f7b
78 changed files with 20622 additions and 2154 deletions
11
internal/datasets/lock_other.go
Normal file
11
internal/datasets/lock_other.go
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
//go:build !unix
|
||||
|
||||
package datasets
|
||||
|
||||
import "context"
|
||||
|
||||
// flockExclusive is a no-op on platforms without flock. The service targets
|
||||
// Linux containers; this stub only keeps non-Unix builds compiling.
|
||||
func flockExclusive(_ context.Context, _ string) (func(), error) {
|
||||
return func() {}, nil
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue