summaryrefslogtreecommitdiff
path: root/libgo/go/cmd/go/internal/modfetch/noweb.go
blob: 9d713dcc6696877224011eceec547a2f4e5068db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// +build cmd_go_bootstrap

package modfetch

import (
	"fmt"
	"io"
)

func webGetGoGet(url string, body *io.ReadCloser) error {
	return fmt.Errorf("no network in go_bootstrap")
}

func webGetBytes(url string, body *[]byte) error {
	return fmt.Errorf("no network in go_bootstrap")
}

func webGetBody(url string, body *io.ReadCloser) error {
	return fmt.Errorf("no network in go_bootstrap")
}