A golang webfinger server implementation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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