This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Description
Up to this point if we set baseUrl = https://www.server.com/api and we have an API which needs to call the baseURL, we need to write a func like this:
func getRoot() -> Single<Root> {
return request(url: absoluteURL(""))
}
absoluteURL("") is really ugly, we should find a more elegant way