Files
cunicu/pkg/backend/base/config.go
Steffen Vogel a74df99adb initial commit
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2021-12-15 18:03:58 +01:00

14 lines
184 B
Go

package base
import "net/url"
type BackendConfig struct {
URI *url.URL
}
func (c *BackendConfig) Parse(uri *url.URL, options map[string]string) error {
c.URI = uri
return nil
}