A golang webfinger server implementation
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

10 righe
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. }