| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The LUCI Authors. All rights reserved. |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 |
| 3 // that can be found in the LICENSE file. |
| 4 |
| 5 package main |
| 6 |
| 7 import ( |
| 8 "golang.org/x/net/context" |
| 9 |
| 10 "github.com/luci/luci-go/cipd/client/cipd" |
| 11 "github.com/luci/luci-go/cipd/client/cipd/ensure" |
| 12 "github.com/luci/luci-go/common/isolatedclient" |
| 13 "github.com/luci/luci-go/common/logging" |
| 14 ) |
| 15 |
| 16 // isolateCipdPackages is implementation of cipd2isolate logic. |
| 17 // |
| 18 // It takes parsed (but not yet resolved) ensure file, preconfigured |
| 19 // CIPD and isolated clients, and does all the work. |
| 20 func isolateCipdPackages(c context.Context, f *ensure.File, cc cipd.Client, ic *
isolatedclient.Client) error { |
| 21 logging.Infof(c, "TODO") |
| 22 return nil |
| 23 } |
| OLD | NEW |