mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-20 08:03:53 +08:00
12 lines
280 B
Go
12 lines
280 B
Go
// +build appengine
|
|
|
|
package termutil
|
|
|
|
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")
|
|
}
|