OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The LUCI Authors. All rights reserved. |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 |
| 3 // that can be found in the LICENSE file. |
| 4 |
| 5 // Package delegation contains low-level API for working with delegation tokens. |
| 6 // |
| 7 // It provides convenient wrappers around Auth Service API for creating the |
| 8 // tokens and related proto messages. |
| 9 // |
| 10 // If you don't know what it is, or why you would use it, you probably don't |
| 11 // need it. |
| 12 // |
| 13 // Prefer the high-level API in server/auth package, in particular |
| 14 // `MintDelegationToken` and `auth.GetRPCTransport(ctx, auth.AsUser)`. |
| 15 package delegation |
OLD | NEW |