versia-go/pkg/lysand/publication_note.go
2024-08-13 01:18:14 +02:00

13 lines
185 B
Go

package lysand
import "encoding/json"
type Note Publication
func (n Note) MarshalJSON() ([]byte, error) {
type note Note
n2 := note(n)
n2.Type = "Note"
return json.Marshal(n2)
}