Source file src/cmd/go/internal/doc/doc_bootstrap.go

     1  // Copyright 2025 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  
     7  // Don't build cmd/doc into go_bootstrap because it depends on net.
     8  
     9  package doc
    10  
    11  import "cmd/go/internal/base"
    12  
    13  var CmdDoc = &base.Command{}
    14  

View as plain text