mirror of
https://github.com/coder/coder.git
synced 2026-09-22 21:22:17 +08: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")
|
|
}
|