feta/toot.go

10 lines
99 B
Go

package feta
type toot struct {
}
func newToot(input []byte) *toot {
t := new(toot)
return t
}