Add license info to Go files

This commit is contained in:
Kovid Goyal 2022-08-25 08:38:04 +05:30
parent ccb60687b6
commit 80c5ac891d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
28 changed files with 54 additions and 0 deletions

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package cli package cli
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package cli package cli
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package at package at
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package at package at
import ( import (

View File

@ -1,5 +1,7 @@
//go:build exclude //go:build exclude
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
// this file is autogenerated by __FILE__ do not edit // this file is autogenerated by __FILE__ do not edit
package at package at

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package main package main
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package crypto package crypto
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package tty package tty
import ( import (

View File

@ -1,3 +1,4 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
//go:build darwin || freebsd || openbsd || netbsd || dragonfly //go:build darwin || freebsd || openbsd || netbsd || dragonfly
// +build darwin freebsd openbsd netbsd dragonfly // +build darwin freebsd openbsd netbsd dragonfly

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package tty package tty
import "golang.org/x/sys/unix" import "golang.org/x/sys/unix"

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package tui package tui
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package tui package tui
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package tui package tui
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package tui package tui
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package tui package tui
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package tui package tui
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package utils package utils
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package utils package utils
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
//go:build !darwin //go:build !darwin
package utils package utils

View File

@ -1,3 +1,4 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
//go:build darwin //go:build darwin
package utils package utils

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package utils package utils
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package utils package utils
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package utils package utils
type RemoteControlCmd struct { type RemoteControlCmd struct {

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package utils package utils
// UTF-8 decode taken from: https://bjoern.hoehrmann.de/utf-8/decoder/dfa/ // UTF-8 decode taken from: https://bjoern.hoehrmann.de/utf-8/decoder/dfa/

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package wcswidth package wcswidth
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package wcswidth package wcswidth
import ( import (

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package wcswidth package wcswidth
func IsFlagCodepoint(ch rune) bool { func IsFlagCodepoint(ch rune) bool {

View File

@ -1,3 +1,5 @@
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package wcswidth package wcswidth
import ( import (