aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/golang.org/x/oauth2/mailru/mailru.go
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2017-12-16 11:25:18 -0800
committerGravatar Frédéric Guillot <fred@miniflux.net>2017-12-16 11:25:18 -0800
commit27196589fbd36f5f840e51b59bd6253d0f865db3 (patch)
tree4896268c735528045e4064ace92a2a75280585b8 /vendor/golang.org/x/oauth2/mailru/mailru.go
parent231ebf2daa9c024fbe99277f57935444946824bd (diff)
Add FeedIcon API call and update dependencies
Diffstat (limited to 'vendor/golang.org/x/oauth2/mailru/mailru.go')
-rw-r--r--vendor/golang.org/x/oauth2/mailru/mailru.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/vendor/golang.org/x/oauth2/mailru/mailru.go b/vendor/golang.org/x/oauth2/mailru/mailru.go
new file mode 100644
index 0000000..dddd9dd
--- /dev/null
+++ b/vendor/golang.org/x/oauth2/mailru/mailru.go
@@ -0,0 +1,16 @@
+// Copyright 2017 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// Package mailru provides constants for using OAuth2 to access Mail.Ru.
+package mailru // import "golang.org/x/oauth2/mailru"
+
+import (
+ "golang.org/x/oauth2"
+)
+
+// Endpoint is Mail.Ru's OAuth 2.0 endpoint.
+var Endpoint = oauth2.Endpoint{
+ AuthURL: "https://o2.mail.ru/login",
+ TokenURL: "https://o2.mail.ru/token",
+}