summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2022-03-26 08:25:56 -0500
committerColin Okay <okay@toyful.space>2022-03-26 08:25:56 -0500
commit597773e5c7be25bf0c1fa7468aa8c6c6e8e0993e (patch)
tree225e1f5a8f91311cb47a5241caa00142e29422e4
parent56e410319b587855da5d57eaeffb8509a4fd6a08 (diff)
[add] License notice to top of files
-rw-r--r--lazybones-client.asd16
-rw-r--r--lazybones-client.lisp16
2 files changed, 32 insertions, 0 deletions
diff --git a/lazybones-client.asd b/lazybones-client.asd
index 12cd534..6e0cd05 100644
--- a/lazybones-client.asd
+++ b/lazybones-client.asd
@@ -1,3 +1,19 @@
+;; Copyright (C) 2022 Colin Okay
+
+;; 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 <http://www.gnu.org/licenses/>.
+
+
(asdf:defsystem #:lazybones-client
:description "Generate client functions for a LAZYBONES:APP instance"
:author "Colin Okay <okay@toyful.space>"
diff --git a/lazybones-client.lisp b/lazybones-client.lisp
index fd362f1..d5dac4f 100644
--- a/lazybones-client.lisp
+++ b/lazybones-client.lisp
@@ -1,5 +1,21 @@
;;;; lazybones-client.lisp -- macro to generate a set of http request functions given an APP instance
+;; Copyright (C) 2022 Colin Okay
+
+;; 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, 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 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 <http://www.gnu.org/licenses/>.
+
+
(defpackage #:lazybones-client
(:use #:cl)
(:export #:generate-client-system))