188
// The URI identifies the resource from which history should be accessed and it is up to the implementor to interpret this URI.
189
// This method should thrift errors - see filestore as an example.
190
>
func (h *historyArchiver) Get(ctx context.Context, URI archiver.URI, request *archiver.GetHistoryRequest) (*archiver.GetHistoryResponse, error) {
history_archiver.go
191
>
192
>
err := h.ValidateURI(URI)
193
>
if err != nil {
194
return nil, serviceerror.NewInvalidArgument(archiver.ErrInvalidURI.Error())
195
}