mirror of
https://github.com/coder/coder.git
synced 2026-06-03 21:18:24 +00:00
ccba2ba99d
This caused inputs to be truncated on MacOS terminals.
11 lines
182 B
Go
11 lines
182 B
Go
//go:build !darwin
|
|
// +build !darwin
|
|
|
|
package cliui
|
|
|
|
import "golang.org/x/xerrors"
|
|
|
|
func removeLineLengthLimit(_ int) (func(), error) {
|
|
return nil, xerrors.New("not implemented")
|
|
}
|