all repos — website @ 37dabe7476a9ed35a95d42ae32e3064fccbbea2d

My website

config: convert base_url to a URL type

Alan Pearce
commit

37dabe7476a9ed35a95d42ae32e3064fccbbea2d

parent

9769d979701c039cce997d8b9c13a6f5f0f764e4

1 file changed, 11 insertions(+), 1 deletion(-)

changed files
M internal/config/config.gointernal/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