mirror of
https://github.com/clearlinux/clr-installer.git
synced 2026-09-08 14:41:40 +00:00
And run them for a commit (needed to poke the go version in go.mod due to a dependency update needing at least go 1.17). Signed-off-by: William Douglas <william.douglas@intel.com>
11 lines
116 B
Go
11 lines
116 B
Go
//go:build !go1.10
|
|
// +build !go1.10
|
|
|
|
package xstrings
|
|
|
|
import "bytes"
|
|
|
|
type stringBuilder struct {
|
|
bytes.Buffer
|
|
}
|