feta/toot.go

12 lines
137 B
Go
Raw Normal View History

2019-11-05 02:53:11 +00:00
package feta
2019-11-03 10:56:57 +00:00
//import "github.com/rs/zerolog/log"
type Toot struct {
}
2019-11-03 11:09:04 +00:00
func NewToot(input []byte) *Toot {
t := new(Toot)
return t
2019-11-03 10:56:57 +00:00
}