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 10:56:57 +00:00
}
func newToot(input []byte) *toot {
t := new(toot)
2019-11-03 11:09:04 +00:00
return t
2019-11-03 10:56:57 +00:00
}