Add vendored dependencies.

This commit is contained in:
2024-04-07 01:07:50 +01:00
parent 2fbeb9b02d
commit cf66d988b7
55 changed files with 4769 additions and 96 deletions
+8
View File
@@ -1,5 +1,12 @@
package traefikoidc
import "os"
// constants
const (
cookie_name = "_raczylo_oidc"
)
type Config struct {
ProviderURL string `json:"providerURL"`
CallbackURL string `json:"callbackURL"`
@@ -11,5 +18,6 @@ type Config struct {
}
func CreateConfig() *Config {
infoLogger.SetOutput(os.Stdout)
return &Config{}
}