1
0
Fork 0
mirror of https://github.com/Luzifer/share.git synced 2024-10-18 13:24:23 +00:00
share/vendor/github.com/cheggaaa/pb/pb_appengine.go
Knut Ahlers 8af31b8e6b
Add progress output to CLI upload
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-10-11 20:15:12 +02:00

11 lines
274 B
Go

// +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")
}