From 3d2c5dbea8fef3de8bf237f8eee7462943cdad34 Mon Sep 17 00:00:00 2001 From: filifa Date: Sun, 14 Jul 2024 16:52:15 -0500 Subject: [PATCH] add copyright headers --- cmd/game.go | 15 +++++++++++++++ cmd/internal/statsapi/client.go | 15 +++++++++++++++ cmd/internal/statsapi/common.go | 15 +++++++++++++++ cmd/internal/statsapi/feed.go | 15 +++++++++++++++ cmd/internal/statsapi/schedule.go | 15 +++++++++++++++ cmd/internal/statsapi/websocket.go | 15 +++++++++++++++ cmd/root.go | 19 +++++++++---------- 7 files changed, 99 insertions(+), 10 deletions(-) diff --git a/cmd/game.go b/cmd/game.go index 57f1fb1..3da9b7b 100644 --- a/cmd/game.go +++ b/cmd/game.go @@ -1,3 +1,18 @@ +/* +Copyright © 2024 filifa + +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 . +*/ package cmd import "scm.dairydemon.net/filifa/mlblive/cmd/internal/statsapi" diff --git a/cmd/internal/statsapi/client.go b/cmd/internal/statsapi/client.go index 8e3805f..bedd9cc 100644 --- a/cmd/internal/statsapi/client.go +++ b/cmd/internal/statsapi/client.go @@ -1,3 +1,18 @@ +/* +Copyright © 2024 filifa + +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 . +*/ package statsapi import ( diff --git a/cmd/internal/statsapi/common.go b/cmd/internal/statsapi/common.go index 4a233b9..0b7bffd 100644 --- a/cmd/internal/statsapi/common.go +++ b/cmd/internal/statsapi/common.go @@ -1,3 +1,18 @@ +/* +Copyright © 2024 filifa + +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 . +*/ package statsapi var TeamIds = map[string]int{ diff --git a/cmd/internal/statsapi/feed.go b/cmd/internal/statsapi/feed.go index 4eb2c55..f81b06c 100644 --- a/cmd/internal/statsapi/feed.go +++ b/cmd/internal/statsapi/feed.go @@ -1,3 +1,18 @@ +/* +Copyright © 2024 filifa + +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 . +*/ package statsapi import ( diff --git a/cmd/internal/statsapi/schedule.go b/cmd/internal/statsapi/schedule.go index ba9b90a..bcca6e1 100644 --- a/cmd/internal/statsapi/schedule.go +++ b/cmd/internal/statsapi/schedule.go @@ -1,3 +1,18 @@ +/* +Copyright © 2024 filifa + +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 . +*/ package statsapi import ( diff --git a/cmd/internal/statsapi/websocket.go b/cmd/internal/statsapi/websocket.go index c64f460..245cb6b 100644 --- a/cmd/internal/statsapi/websocket.go +++ b/cmd/internal/statsapi/websocket.go @@ -1,3 +1,18 @@ +/* +Copyright © 2024 filifa + +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 . +*/ package statsapi import ( diff --git a/cmd/root.go b/cmd/root.go index c31d93c..7ab201c 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -1,18 +1,17 @@ /* Copyright © 2024 filifa -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 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. +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 . +You should have received a copy of the GNU General Public License along with +this program. If not, see . */ package cmd