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