| 20 | } |
| 21 | |
| 22 | type Auth struct { |
| 23 | driver string |
| 24 | authConfig IAuthConfig |
| 25 | } |
| 26 | |
| 27 | func (a *Auth) GenerateID(position string, tokenName string) string { |
| 28 | return fmt.Sprintf("%s-%s-%s-%s", position, tokenName, a.driver, a.authConfig.ID()) |
nothing calls this directly
no outgoing calls
no test coverage detected