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