mirror of
https://github.com/therootcompany/telebit.git
synced 2025-12-25 06:48:45 +00:00
15 lines
219 B
Go
15 lines
219 B
Go
package packer
|
|
|
|
import "bytes"
|
|
|
|
//packerData -- Contains packer data
|
|
type packerData struct {
|
|
Buffer *bytes.Buffer
|
|
}
|
|
|
|
func newPackerData() (p *packerData) {
|
|
p = new(packerData)
|
|
p.Buffer = new(bytes.Buffer)
|
|
return
|
|
}
|