From abaa418e432ffb1322ef6d4142f2a08ef90957ca Mon Sep 17 00:00:00 2001 From: kim Date: Thu, 8 Dec 2022 17:28:41 +0000 Subject: [PATCH] add missing license text Signed-off-by: kim --- internal/cache/ap.go | 18 ++++++++++++++++++ internal/cache/cache.go | 18 ++++++++++++++++++ internal/cache/gts.go | 18 ++++++++++++++++++ internal/cache/util.go | 18 ++++++++++++++++++ internal/state/state.go | 18 ++++++++++++++++++ 5 files changed, 90 insertions(+) diff --git a/internal/cache/ap.go b/internal/cache/ap.go index 14c1db45f5..ef2807cd91 100644 --- a/internal/cache/ap.go +++ b/internal/cache/ap.go @@ -1,3 +1,21 @@ +/* + GoToSocial + Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org + + 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 . +*/ + package cache type APCaches interface { diff --git a/internal/cache/cache.go b/internal/cache/cache.go index d77b77961e..0f2a59ef10 100644 --- a/internal/cache/cache.go +++ b/internal/cache/cache.go @@ -1,3 +1,21 @@ +/* + GoToSocial + Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org + + 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 . +*/ + package cache type Caches struct { diff --git a/internal/cache/gts.go b/internal/cache/gts.go index 845b1f68db..9d77f53863 100644 --- a/internal/cache/gts.go +++ b/internal/cache/gts.go @@ -1,3 +1,21 @@ +/* + GoToSocial + Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org + + 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 . +*/ + package cache import ( diff --git a/internal/cache/util.go b/internal/cache/util.go index 7141d8178e..56be27e05c 100644 --- a/internal/cache/util.go +++ b/internal/cache/util.go @@ -1,3 +1,21 @@ +/* + GoToSocial + Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org + + 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 . +*/ + package cache import "github.com/superseriousbusiness/gotosocial/internal/log" diff --git a/internal/state/state.go b/internal/state/state.go index 35908edf15..fb6d6f41a6 100644 --- a/internal/state/state.go +++ b/internal/state/state.go @@ -1,3 +1,21 @@ +/* + GoToSocial + Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org + + 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 . +*/ + package state import (