11 lines
223 B
Go
11 lines
223 B
Go
package client
|
|
|
|
|
|
type Client struct {
|
|
}
|
|
|
|
func (cli *Client) FileExists(path string) (bool, error) {
|
|
//reqPath = fmt.Sprintf("/v3/api/file/%s", path)
|
|
//request, err := http.NewRequest("HEAD", reqPath, nil)
|
|
}
|