good morning!!!!

Skip to content
Snippets Groups Projects
Commit 470e237b authored by Jake Johnston's avatar Jake Johnston
Browse files

Merge branch 'social_fields' into 'master'

Social Fields

See merge request !18
parents f35d147a 97f65ca4
No related branches found
No related tags found
1 merge request!18Social Fields
Pipeline #24021 passed with stage
in 1 minute and 6 seconds
......@@ -26,10 +26,17 @@ type ServerVariable struct {
}
type Info struct {
Title string `json:"title"`
Description string `json:"description"`
Version string `json:"version"`
Contact Contact `json:"contact,omitempty"`
Title string `json:"title"`
Description string `json:"description"`
Version string `json:"version"`
Contact Contact `json:"contact,omitempty"`
Socials []*SocialInfo `json:"x-social,omitempty"`
}
type SocialInfo struct {
Name string `json:"name"`
URL string `json:"url"`
Color string `json:"color"`
}
type Contact struct {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment