feta/toot.go
2019-11-03 03:09:04 -08:00

12 lines
137 B
Go

package main
//import "github.com/rs/zerolog/log"
type Toot struct {
}
func NewToot(input []byte) *Toot {
t := new(Toot)
return t
}