A golang webfinger server implementation
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

10 řádky
315 B

  1. package webfinger
  2. // A Resource is the top-level JRD resource object.
  3. type Resource struct {
  4. Subject string `json:"subject,omitempty"`
  5. Aliases []string `json:"aliases,omitempty"`
  6. Properties map[string]string `json:"properties,omitempty"`
  7. Links []Link `json:"links"`
  8. }