github.com/jkawamoto/roadie-azure@v0.3.5/version.go (about)

     1  //
     2  // version.go
     3  //
     4  // Copyright (c) 2017 Junpei Kawamoto
     5  //
     6  // This file is part of Roadie Azure.
     7  //
     8  // Roadie Azure is free software: you can redistribute it and/or modify
     9  // it under the terms of the GNU General Public License as published by
    10  // the Free Software Foundation, either version 3 of the License, or
    11  // (at your option) any later version.
    12  //
    13  // Roadie Azure is distributed in the hope that it will be useful,
    14  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  // GNU General Public License for more details.
    17  //
    18  // You should have received a copy of the GNU General Public License
    19  // along with Roadie Azure. If not, see <http://www.gnu.org/licenses/>.
    20  //
    21  
    22  package main
    23  
    24  const (
    25  	// Name of this command.
    26  	Name string = "roadie-azure"
    27  	// Version of this command.
    28  	Version string = "0.3.5"
    29  	// Author defines the author of this program.
    30  	Author string = "Junpei Kawamoto"
    31  	// Email defines an email address of the author.
    32  	Email string = "kawamoto.junpei@gmail.com"
    33  )