summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/smartystreets/assertions/internal/oglemock/createmock/testdata/gcs/bucket.go
blob: da714f305c501bb1abb2108e6d6cc1f43ec2720c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package gcs

import "golang.org/x/net/context"

type Bucket interface {
	Name() string
	CreateObject(context.Context, *CreateObjectRequest) (*Object, error)
	CopyObject(ctx context.Context, req *CopyObjectRequest) (o *Object, err error)
}

type Object struct {
}

type CreateObjectRequest struct {
}

type CopyObjectRequest struct {
}

type Int int
type Array []int
type Chan <-chan int
type Ptr *int