mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
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")
|
|
}
|