| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 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 contains the entry point code for the LUCI Deployment Tool |
| 6 // ("luci_deploy"). This tool is a command-line interface designed to perform |
| 7 // controlled and automated deployment of LUCI (and LUCI-compatible) services. |
| 8 // |
| 9 // "luci_deploy" is Linux-oriented, but may also work on other platforms. It |
| 10 // leverages external tooling for many remote operations; it is the |
| 11 // responsibility of the user to have suitable versions of that tooling |
| 12 // installed and available on PATH. |
| 13 package main |
| OLD | NEW |