mirror of
https://github.com/versia-pub/versia-go.git
synced 2025-12-06 06:28:18 +01:00
13 lines
185 B
Go
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)
|
||
|
|
}
|