github.com/koron/hk@v0.0.0-20150303213137-b8aeaa3ab34c/about.go (about)

     1  package main
     2  
     3  var helpAbout = &Command{
     4  	Usage:    "about",
     5  	Category: "hk",
     6  	Short:    "information about hk (e.g. copyright, license, etc.)",
     7  	Long: userAgent + `
     8  
     9  The MIT License (MIT)
    10  
    11  Copyright © 2013 - 2014 Heroku, Keith Rarick and the hk
    12  contributors. A full list of contributors is available on GitHub:
    13  
    14      https://github.com/heroku/hk/graphs/contributors
    15  
    16  Permission is hereby granted, free of charge, to any person obtaining
    17  a copy of this software and associated documentation files (the
    18  "Software"), to deal in the Software without restriction, including
    19  without limitation the rights to use, copy, modify, merge, publish,
    20  distribute, sublicense, and/or sell copies of the Software, and to
    21  permit persons to whom the Software is furnished to do so, subject to
    22  the following conditions:
    23  
    24  The above copyright notice and this permission notice shall be
    25  included in all copies or substantial portions of the Software.
    26  
    27  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    28  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    29  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
    30  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
    31  CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
    32  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
    33  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    34  
    35  For source code, to contribute to hk, or just to say hello:
    36  
    37      https://github.com/heroku/hk
    38  
    39  Happy hacking!
    40  `,
    41  }