dex/schema/workerschema/util.go

15 lines
265 B
Go
Raw Normal View History

2015-08-18 05:57:27 +05:30
package workerschema
import (
"net/http"
"strings"
)
func NewWithBasePath(client *http.Client, basePath string) (*Service, error) {
s, err := New(client)
if err == nil {
s.BasePath = strings.Replace(s.BasePath, "$ENDPOINT", basePath, 1)
}
return s, nil
}