mirror of
https://github.com/spf13/cobra
synced 2025-05-05 12:57:22 +00:00
41 lines
1.4 KiB
Go
41 lines
1.4 KiB
Go
// Copyright © 2015 Steve Francia <spf@spf13.com>.
|
||
//
|
||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
// you may not use this file except in compliance with the License.
|
||
// You may obtain a copy of the License at
|
||
// http://www.apache.org/licenses/LICENSE-2.0
|
||
//
|
||
// Unless required by applicable law or agreed to in writing, software
|
||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
// See the License for the specific language governing permissions and
|
||
// limitations under the License.
|
||
|
||
// Parts inspired by https://github.com/ryanuber/go-license
|
||
|
||
package cmd
|
||
|
||
func initWtfpl() {
|
||
Licenses["wtfpl"] = License{
|
||
Name: "WTFPL – Do What the Fuck You Want to Public License",
|
||
PossibleMatches: []string{"WTFPL", "wtf"},
|
||
Header: `
|
||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||
Version 2, December 2004
|
||
|
||
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
||
|
||
Everyone is permitted to copy and distribute verbatim or modified
|
||
copies of this license document, and changing it is allowed as long
|
||
as the name is changed. `,
|
||
Text: `DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE (WTFPL)
|
||
|
||
{{ .copyright }}
|
||
|
||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||
|
||
0. You just DO WHAT THE FUCK YOU WANT TO.
|
||
`,
|
||
}
|
||
}
|