Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
9 lines
159 B
Go
9 lines
159 B
Go
package slurm
|
|
|
|
import "context"
|
|
|
|
// TokenSource provides tokens for authentication.
|
|
type TokenSource interface {
|
|
Token(ctx context.Context) (string, error)
|
|
}
|