├── .editorconfig ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── error.go ├── go.mod ├── go.sum ├── licenses ├── apache2 ├── apache2.copyright ├── apache2.header ├── cddl ├── cddl.header ├── epl ├── epl.copyright ├── epl.header ├── freebsd ├── freebsd.copyright ├── freebsd.header ├── gpl2 ├── gpl2.copyright ├── gpl2.header ├── gpl3 ├── gpl3.copyright ├── gpl3.header ├── lgpl2 ├── lgpl2.copyright ├── lgpl2.header ├── lgpl3 ├── mit ├── mit.copyright ├── mit.header ├── mpl2 ├── mpl2.header ├── newbsd ├── newbsd.copyright ├── newbsd.header ├── unlicense ├── unlicense.copyright ├── unlicense.header ├── upl ├── upl.copyright └── upl.header ├── licentia.go ├── licentia_test.go └── statik └── statik.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | licentia 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/README.md -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/error.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/go.sum -------------------------------------------------------------------------------- /licenses/apache2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/apache2 -------------------------------------------------------------------------------- /licenses/apache2.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/apache2.copyright -------------------------------------------------------------------------------- /licenses/apache2.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/apache2.header -------------------------------------------------------------------------------- /licenses/cddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/cddl -------------------------------------------------------------------------------- /licenses/cddl.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/cddl.header -------------------------------------------------------------------------------- /licenses/epl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/epl -------------------------------------------------------------------------------- /licenses/epl.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/epl.copyright -------------------------------------------------------------------------------- /licenses/epl.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/epl.header -------------------------------------------------------------------------------- /licenses/freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/freebsd -------------------------------------------------------------------------------- /licenses/freebsd.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/freebsd.copyright -------------------------------------------------------------------------------- /licenses/freebsd.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/freebsd.header -------------------------------------------------------------------------------- /licenses/gpl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/gpl2 -------------------------------------------------------------------------------- /licenses/gpl2.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/gpl2.copyright -------------------------------------------------------------------------------- /licenses/gpl2.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/gpl2.header -------------------------------------------------------------------------------- /licenses/gpl3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/gpl3 -------------------------------------------------------------------------------- /licenses/gpl3.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/gpl3.copyright -------------------------------------------------------------------------------- /licenses/gpl3.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/gpl3.header -------------------------------------------------------------------------------- /licenses/lgpl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/lgpl2 -------------------------------------------------------------------------------- /licenses/lgpl2.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/lgpl2.copyright -------------------------------------------------------------------------------- /licenses/lgpl2.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/lgpl2.header -------------------------------------------------------------------------------- /licenses/lgpl3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/lgpl3 -------------------------------------------------------------------------------- /licenses/mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/mit -------------------------------------------------------------------------------- /licenses/mit.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/mit.copyright -------------------------------------------------------------------------------- /licenses/mit.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/mit.header -------------------------------------------------------------------------------- /licenses/mpl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/mpl2 -------------------------------------------------------------------------------- /licenses/mpl2.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/mpl2.header -------------------------------------------------------------------------------- /licenses/newbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/newbsd -------------------------------------------------------------------------------- /licenses/newbsd.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/newbsd.copyright -------------------------------------------------------------------------------- /licenses/newbsd.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/newbsd.header -------------------------------------------------------------------------------- /licenses/unlicense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/unlicense -------------------------------------------------------------------------------- /licenses/unlicense.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/unlicense.copyright -------------------------------------------------------------------------------- /licenses/unlicense.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/unlicense.header -------------------------------------------------------------------------------- /licenses/upl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/upl -------------------------------------------------------------------------------- /licenses/upl.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/upl.copyright -------------------------------------------------------------------------------- /licenses/upl.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licenses/upl.header -------------------------------------------------------------------------------- /licentia.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licentia.go -------------------------------------------------------------------------------- /licentia_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/licentia_test.go -------------------------------------------------------------------------------- /statik/statik.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4milo/licentia/HEAD/statik/statik.go --------------------------------------------------------------------------------