mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2025-01-09 04:19:56 +00:00
17 lines
523 B
Go
17 lines
523 B
Go
|
package views
|
||
|
|
||
|
type link struct {
|
||
|
Text string
|
||
|
URI string
|
||
|
}
|
||
|
|
||
|
var communityLinks = []link{
|
||
|
{Text: "moneroworld.com", URI: "https://moneroworld.com"},
|
||
|
{Text: "monero.how", URI: "https://www.monero.how"},
|
||
|
{Text: "monero.observer", URI: "https://www.monero.observer"},
|
||
|
{Text: "revuo-xmr.com", URI: "https://revuo-xmr.com"},
|
||
|
{Text: "themonoeromoon.com", URI: "https://www.themoneromoon.com"},
|
||
|
{Text: "monerotopia.com", URI: "https://monerotopia.com"},
|
||
|
{Text: "sethforprivacy.com", URI: "https://sethforprivacy.com"},
|
||
|
}
|