Source File
excluded.go
Belonging Package
golang.org/x/pkgsite/internal/postgres
package postgres
import (
)
func ( *DB) ( context.Context, string) ( bool, error) {
defer derrors.Wrap(&, "DB.IsExcluded(ctx, %q)", )
:= .expoller.Current().([]string)
for , := range {
:=
if !strings.HasSuffix(, "/") {
+= "/"
}
if == || strings.HasPrefix(, ) {
log.Infof(, "path %q matched excluded prefix %q", , )
return true, nil
}
}
return false, nil
}
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |