1
0
mirror of https://github.com/minio/mc.git synced 2025-11-14 23:42:27 +03:00

Move major url handling into client as part of #425

This commit is contained in:
Harshavardhana
2015-04-18 16:59:01 -07:00
parent ba071d24bf
commit 8606a7db9b
7 changed files with 122 additions and 109 deletions

View File

@@ -16,7 +16,11 @@
package main
import "fmt"
import (
"fmt"
"github.com/minio-io/mc/pkg/client"
)
type errInvalidArgument struct{}
@@ -25,7 +29,7 @@ func (e errInvalidArgument) Error() string {
}
type errUnsupportedScheme struct {
scheme urlType
scheme client.URLType
}
func (e errUnsupportedScheme) Error() string {