profile.go 297 B

123456789101112
  1. // Copyright 2017 Frédéric Guillot. All rights reserved.
  2. // Use of this source code is governed by the Apache 2.0
  3. // license that can be found in the LICENSE file.
  4. package oauth2
  5. // Profile is the OAuth2 user profile.
  6. type Profile struct {
  7. Key string
  8. ID string
  9. Username string
  10. }