summaryrefslogtreecommitdiff
path: root/vendor/gopkg.in/cheggaaa/pb.v1/pb_appengine.go
blob: d85dbc3b2bbff4e0d54c40d5b46cff508e37dce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build appengine

package pb

import "errors"

// terminalWidth returns width of the terminal, which is not supported
// and should always failed on appengine classic which is a sandboxed PaaS.
func terminalWidth() (int, error) {
	return 0, errors.New("Not supported")
}