mirror of
https://github.com/NohamR/papeer.git
synced 2026-05-25 12:27:20 +00:00
11 lines
155 B
Go
11 lines
155 B
Go
package book
|
|
|
|
type link struct {
|
|
Href string `json:"url"`
|
|
Text string `json:"name"`
|
|
}
|
|
|
|
func NewLink(href, text string) link {
|
|
return link{href, text}
|
|
}
|