mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
10 lines
96 B
Go
10 lines
96 B
Go
|
//+build !go1.10
|
||
|
|
||
|
package xstrings
|
||
|
|
||
|
import "bytes"
|
||
|
|
||
|
type stringBuilder struct {
|
||
|
bytes.Buffer
|
||
|
}
|