vanity

vanity - A tiny server for golang vanity redirects
Log | Files | Refs | README | LICENSE

commit 2a7cf68c725b52d95b5e35b7cac090c9245935a3
parent 01d1145a87dad77e54fcf72d2ff5820245946b07
Author: Mark Wilkerson <mark@markhuge.com>
Date:   Sat,  9 Oct 2021 03:18:33 -0700

be all fsf about it

Diffstat:
Mcli.go | 15+++++++++++++++
Mhandler.go | 15+++++++++++++++
Mhandler_test.go | 15+++++++++++++++
3 files changed, 45 insertions(+), 0 deletions(-)

diff --git a/cli.go b/cli.go @@ -1,3 +1,18 @@ +/* + Copyright 2021 Mark Wilkerson + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/> +*/ package main import ( diff --git a/handler.go b/handler.go @@ -1,3 +1,18 @@ +/* + Copyright 2021 Mark Wilkerson + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/> +*/ package main import ( diff --git a/handler_test.go b/handler_test.go @@ -1,3 +1,18 @@ +/* + Copyright 2021 Mark Wilkerson + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/> +*/ package main import (