EncodedContinuousToken -
| 2 | |
| 3 | // EncodedContinuousToken - |
| 4 | type EncodedContinuousToken interface { |
| 5 | // String returns the string representation of the continuous token. |
| 6 | String() string |
| 7 | // Decode decodes the continuous token from a string |
| 8 | Decode() (ContinuousToken, error) |
| 9 | } |
| 10 | |
| 11 | // ContinuousToken - |
| 12 | type ContinuousToken interface { |
no outgoing calls
no test coverage detected