go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/led/main.go (about)

     1  // Copyright 2020 The LUCI Authors.
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //      http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  // Command led implements a 'led' binary WITHOUT support for "kitchen" based
    16  // tasks. If you need support for kitchen based tasks, see 'infra/tools/led'.
    17  //
    18  // TODO(crbug.com/1015181) Hopefully kitchen isn't long for this world and will
    19  // be gone soon (~mid 2020).
    20  //
    21  // Subpackages include:
    22  //   - ledcli        - The implementation of the CLI executable, paramaterized
    23  //     with an object to handle kitchen jobs.
    24  //   - ledcmd        - Implementation of 'heavyweight' led subcommands, usually
    25  //     those which interact with external services.
    26  //   - job           - The job definition which is passed between subcommands,
    27  //     as well as structured editing APIs.
    28  //   - job/jobcreate - Library for generating jobs from external sources
    29  //   - job/jobexport - Library for exporting jobs to external sinks
    30  package main
    31  
    32  import "go.chromium.org/luci/led/ledcli"
    33  
    34  func main() {
    35  	ledcli.Main(nil)
    36  }