Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: cipd/client/cmd/cipd2isolate/isolate.go

Issue 2746363007: cipd2isolate: Initial CLI parsing boilerplate. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698