fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

1//go:build !windows && !wasm 2 3package zoekt 4 5import ( 6 "os" 7 8 "golang.org/x/sys/unix" 9) 10 11func init() { 12 umask = os.FileMode(unix.Umask(0)) 13 unix.Umask(int(umask)) 14}