func makePublic()

in code/function/function.go [87:90]


func makePublic(ctx context.Context, bucket, file string) error {
	obj := storageClient.Bucket(bucket).Object(file)
	return obj.ACL().Set(ctx, storage.AllUsers, "READER")
}