mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2026-04-22 22:57:04 +08:00
a74df99adb
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
14 lines
184 B
Go
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
|
|
}
|