Black Lives Matter. Support the Equal Justice Initiative.

Source file src/cmd/go/internal/modfetch/bootstrap.go

Documentation: cmd/go/internal/modfetch

     1  // Copyright 2019 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build cmd_go_bootstrap
     6  // +build cmd_go_bootstrap
     7  
     8  package modfetch
     9  
    10  import "golang.org/x/mod/module"
    11  
    12  func useSumDB(mod module.Version) bool {
    13  	return false
    14  }
    15  
    16  func lookupSumDB(mod module.Version) (string, []string, error) {
    17  	panic("bootstrap")
    18  }
    19  

View as plain text