config: convert base_url to a URL type
1 file changed, 11 insertions(+), 1 deletion(-)
changed files
M internal/config/config.go → internal/config/config.go
@@ -3,6 +3,7 @@ import ( "io/fs" "log/slog" + "net/url" "github.com/BurntSushi/toml" "github.com/pkg/errors"@@ -18,9 +19,18 @@ Name string URL string `toml:"url"` } +type URL struct { + *url.URL +} + +func (u *URL) UnmarshalText(text []byte) (err error) { + u.URL, err = url.Parse(string(text)) + return err +} + type Config struct { DefaultLanguage string `toml:"default_language"` - BaseURL string `toml:"base_url"` + BaseURL URL `toml:"base_url"` RedirectOtherHostnames bool `toml:"redirect_other_hostnames"` Title string Email string