refactor: rework logging and cancellation in services

This commit is contained in:
Stavros
2026-05-08 17:18:39 +03:00
parent 55b53c77bf
commit e214d6d8d4
12 changed files with 315 additions and 295 deletions
-8
View File
@@ -13,7 +13,6 @@ type RuntimeConfig struct {
OAuthWhitelist []string
ConfiguredProviders []Provider
OIDCClients []OIDCClientConfig
LabelProvider LabelProvider
}
type Provider struct {
@@ -21,10 +20,3 @@ type Provider struct {
ID string `json:"id"`
OAuth bool `json:"oauth"`
}
type LabelProvider int
const (
LabelProviderDocker LabelProvider = iota
LabelProviderKubernetes
)