github.com/andresbott/yamlfmt@v0.1.0/main.go (about)

     1  // ADOBE CONFIDENTIAL
     2  // ___________________
     3  //
     4  // Copyright 2022 Adobe
     5  // All Rights Reserved.
     6  //
     7  // NOTICE: All information contained herein is, and remains
     8  // the property of Adobe and its suppliers, if any. The intellectual
     9  // and technical concepts contained herein are proprietary to Adobe
    10  // and its suppliers and are protected by all applicable intellectual
    11  // property laws, including trade secret and copyright laws.
    12  // Dissemination of this information or reproduction of this material
    13  // is strictly forbidden unless prior written permission is obtained
    14  // from Adobe.
    15  
    16  package main
    17  
    18  import "github.com/andresbott/yamlfmt/app/cli"
    19  
    20  func main() {
    21  	cli.Execute()
    22  }