github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/ais/backend/mock_gcp.go (about) 1 //go:build !gcp 2 3 // Package backend contains implementation of various backend providers. 4 /* 5 * Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved. 6 */ 7 package backend 8 9 import ( 10 "github.com/NVIDIA/aistore/api/apc" 11 "github.com/NVIDIA/aistore/core" 12 ) 13 14 func NewGCP(_ core.TargetPut) (core.Backend, error) { 15 return nil, newErrInitBackend(apc.GCP) 16 }