A golang webfinger server implementation
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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