mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 06:57:33 +00:00
15 lines
158 B
Go
15 lines
158 B
Go
package set
|
|
|
|
import (
|
|
"net/url"
|
|
)
|
|
|
|
type Config struct {
|
|
CallURL string
|
|
}
|
|
|
|
func (w *Config) Validate() error {
|
|
_, err := url.Parse(w.CallURL)
|
|
return err
|
|
}
|