add base URL parsing
Some checks are pending
Lint / golangci-lint (push) Waiting to run
Declarative Tests / test (push) Waiting to run
Declarative Tests / build-fedora (push) Waiting to run
Declarative Tests / build-ubuntu-focal (push) Waiting to run

This commit is contained in:
Matthew Rich 2024-09-19 07:59:38 +00:00
parent 6e0049c4d2
commit 4b38af88a4

View File

@ -41,3 +41,6 @@ func (i ID) Extension() (exttype string, fileext string) {
return exttype, fileext
}
func (i ID) IsEmpty() bool {
return i == ""
}