10 lines
99 B
Go
10 lines
99 B
Go
package feta
|
|
|
|
type toot struct {
|
|
}
|
|
|
|
func newToot(input []byte) *toot {
|
|
t := new(toot)
|
|
return t
|
|
}
|