mirror of
https://github.com/vbatts/srvdav.git
synced 2024-11-25 09:55:40 +00:00
19 lines
280 B
Go
19 lines
280 B
Go
|
package ical
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"bytes"
|
||
|
)
|
||
|
|
||
|
type strBuffer struct {
|
||
|
buffer bytes.Buffer
|
||
|
}
|
||
|
|
||
|
func (b *strBuffer) Write(format string, elem ...interface{}) {
|
||
|
b.buffer.WriteString(fmt.Sprintf(format, elem...))
|
||
|
}
|
||
|
|
||
|
func (b *strBuffer) String() string {
|
||
|
return b.buffer.String()
|
||
|
}
|