()
| 32 | var embedded embed.FS |
| 33 | |
| 34 | func authenticators() []auth.Authenticator { |
| 35 | return []auth.Authenticator{ |
| 36 | auth.NewPatAuthenticator(), |
| 37 | auth.NewOAuthAuthenticator(cache.NewFileCache(), *auth.NewBrowserLauncher()), |
| 38 | auth.NewBearerAuthenticator(cache.NewFileCache()), |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | func colorsSupported() bool { |
| 43 | _, noColorSet := os.LookupEnv("NO_COLOR") |
no test coverage detected