feat: add flag decoder (candidate)

This commit is contained in:
Stavros
2025-09-11 23:10:36 +03:00
parent 2d78e6b598
commit 91048c16f8
4 changed files with 129 additions and 9 deletions

View File

@@ -174,3 +174,13 @@ type AppPath struct {
Allow string
Block string
}
// Flags
type Providers struct {
Providers map[string]ProviderConfig
}
type ProviderConfig struct {
Config OAuthServiceConfig
}