1
0
mirror of https://github.com/minio/mc.git synced 2025-11-16 11:02:34 +03:00

Add resume session command

This commit is contained in:
Harshavardhana
2015-06-20 16:17:29 -07:00
parent 677a484215
commit 7bc4f99bfb
2 changed files with 57 additions and 27 deletions

View File

@@ -16,6 +16,14 @@
package main
type errInvalidSessionID struct {
id string
}
func (e errInvalidSessionID) Error() string {
return "Invalid session id " + e.id + "."
}
type errInvalidACL struct {
acl string
}