feta/toot.go

10 lines
99 B
Go
Raw Normal View History

2019-11-05 02:53:11 +00:00
package feta
2019-11-03 10:56:57 +00:00
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
}