cityuni-webserver/utils/io/buffered-writer.go
Captain ALM da41214617
All checks were successful
continuous-integration/drone/push Build is passing
Refractor the project.
2022-07-16 11:47:52 +01:00

11 lines
172 B
Go

package io
type BufferedWriter struct {
Data []byte
}
func (c *BufferedWriter) Write(p []byte) (n int, err error) {
c.Data = append(c.Data, p...)
return len(p), nil
}