Chromium Code Reviews| 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 and how to use it, you probably don't need it. | |
|
iannucci
2016/08/11 22:52:35
I dunno about 'how to use it'... wouldn't that adv
Vadim Sh.
2016/08/11 23:25:37
Done.
| |
| 11 // | |
| 12 // Prefer the high-level API in server/auth package, in particular | |
| 13 // `MintDelegationToken` and `auth.GetRPCTransport(ctx, auth.AsUser)`. | |
| 14 package delegation | |
| OLD | NEW |