From 422cfb417bb07f63eea57bf4ab54b052f1618e84 Mon Sep 17 00:00:00 2001 From: Colin Cogle <19931245+rhymeswithmogul@users.noreply.github.com> Date: Wed, 29 Jun 2022 21:47:17 -0400 Subject: [PATCH] Add AGPL headers. --- PSGopher.psd1 | 18 +++++++++++++++++- src/PSGopher.psm1 | 17 +++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/PSGopher.psd1 b/PSGopher.psd1 index d48f914..4e8454e 100644 --- a/PSGopher.psd1 +++ b/PSGopher.psd1 @@ -1,7 +1,23 @@ +<# +PSGopher -- a PowerShell client for Gopher and Gopher+ servers. +Copyright (C) 2021-2022 Colin Cogle + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU Affero General Public License as published by the Free +Software Foundation, either version 3 of the License, or (at your option) any +later version. + +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 Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public License along +with this program. If not, see . +#> + # Module manifest for module 'PSGopher' # Generated by: Colin Cogle # Generated on: December 2, 2021 -# @{ diff --git a/src/PSGopher.psm1 b/src/PSGopher.psm1 index a6691e6..ab7b9d8 100644 --- a/src/PSGopher.psm1 +++ b/src/PSGopher.psm1 @@ -1,3 +1,20 @@ +<# +PSGopher -- a PowerShell client for Gopher and Gopher+ servers. +Copyright (C) 2021-2022 Colin Cogle + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU Affero General Public License as published by the Free +Software Foundation, either version 3 of the License, or (at your option) any +later version. + +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 Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public License along +with this program. If not, see . +#> + #Requires -Version 7.1 Function Invoke-GopherRequest { [CmdletBinding(DefaultParameterSetName='ToScreen')]