Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
042f5311fcab71f9bd8ac33c1e25597799eb34d7
124 changes: 62 additions & 62 deletions examples/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,68 +159,68 @@ func main() {
goth.UseProviders(openidConnect)
}

m := make(map[string]string)
m["amazon"] = "Amazon"
m["apple"] = "Apple"
m["auth0"] = "Auth0"
m["azuread"] = "Azure AD"
m["battlenet"] = "Battlenet"
m["bitbucket"] = "Bitbucket"
m["box"] = "Box"
m["dailymotion"] = "Dailymotion"
m["deezer"] = "Deezer"
m["digitalocean"] = "Digital Ocean"
m["discord"] = "Discord"
m["dropbox"] = "Dropbox"
m["eveonline"] = "Eve Online"
m["facebook"] = "Facebook"
m["fitbit"] = "Fitbit"
m["gitea"] = "Gitea"
m["github"] = "Github"
m["gitlab"] = "Gitlab"
m["google"] = "Google"
m["gplus"] = "Google Plus"
m["heroku"] = "Heroku"
m["instagram"] = "Instagram"
m["intercom"] = "Intercom"
m["kakao"] = "Kakao"
m["lastfm"] = "Last FM"
m["line"] = "LINE"
m["linkedin"] = "Linkedin"
m["mastodon"] = "Mastodon"
m["meetup"] = "Meetup.com"
m["microsoftonline"] = "Microsoft Online"
m["naver"] = "Naver"
m["nextcloud"] = "NextCloud"
m["okta"] = "Okta"
m["onedrive"] = "Onedrive"
m["openid-connect"] = "OpenID Connect"
m["patreon"] = "Patreon"
m["paypal"] = "Paypal"
m["salesforce"] = "Salesforce"
m["seatalk"] = "SeaTalk"
m["shopify"] = "Shopify"
m["slack"] = "Slack"
m["soundcloud"] = "SoundCloud"
m["spotify"] = "Spotify"
m["steam"] = "Steam"
m["strava"] = "Strava"
m["stripe"] = "Stripe"
m["tiktok"] = "TikTok"
m["twitch"] = "Twitch"
m["twitter"] = "Twitter"
m["twitterv2"] = "Twitter"
m["typetalk"] = "Typetalk"
m["uber"] = "Uber"
m["vk"] = "VK"
m["wecom"] = "WeCom"
m["wepay"] = "Wepay"
m["xero"] = "Xero"
m["yahoo"] = "Yahoo"
m["yammer"] = "Yammer"
m["yandex"] = "Yandex"
m["zoom"] = "Zoom"

m := map[string]string{
"amazon": "Amazon",
"apple": "Apple",
"auth0": "Auth0",
"azuread": "Azure AD",
"battlenet": "Battle.net",
"bitbucket": "Bitbucket",
"box": "Box",
"dailymotion": "Dailymotion",
"deezer": "Deezer",
"digitalocean": "Digital Ocean",
"discord": "Discord",
"dropbox": "Dropbox",
"eveonline": "Eve Online",
"facebook": "Facebook",
"fitbit": "Fitbit",
"gitea": "Gitea",
"github": "Github",
"gitlab": "Gitlab",
"google": "Google",
"gplus": "Google Plus",
"heroku": "Heroku",
"instagram": "Instagram",
"intercom": "Intercom",
"kakao": "Kakao",
"lastfm": "Last FM",
"line": "LINE",
"linkedin": "LinkedIn",
"mastodon": "Mastodon",
"meetup": "Meetup.com",
"microsoftonline": "Microsoft Online",
"naver": "Naver",
"nextcloud": "NextCloud",
"okta": "Okta",
"onedrive": "Onedrive",
"openid-connect": "OpenID Connect",
"patreon": "Patreon",
"paypal": "Paypal",
"salesforce": "Salesforce",
"seatalk": "SeaTalk",
"shopify": "Shopify",
"slack": "Slack",
"soundcloud": "SoundCloud",
"spotify": "Spotify",
"steam": "Steam",
"strava": "Strava",
"stripe": "Stripe",
"tiktok": "TikTok",
"twitch": "Twitch",
"twitter": "Twitter",
"twitterv2": "Twitter",
"typetalk": "Typetalk",
"uber": "Uber",
"vk": "VK",
"wecom": "WeCom",
"wepay": "Wepay",
"xero": "Xero",
"yahoo": "Yahoo",
"yammer": "Yammer",
"yandex": "Yandex",
"zoom": "Zoom",
}
var keys []string
for k := range m {
keys = append(keys, k)
Expand Down