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.

14 righe
413 B

  1. package webfinger
  2. // A Link is a series of user details
  3. type Link struct {
  4. HRef string `json:"href"`
  5. Type string `json:"type,omitempty"`
  6. Rel string `json:"rel"`
  7. Properties map[string]*string `json:"properties,omitempty"`
  8. Titles map[string]string `json:"titles,omitempty"`
  9. }
  10. // Rel allows referencing a subset of the users details
  11. type Rel string