diff --git a/src/main/scala/db/DatabaseLayer.scala b/src/main/scala/db/DatabaseLayer.scala index af32e48..1d0b9f4 100644 --- a/src/main/scala/db/DatabaseLayer.scala +++ b/src/main/scala/db/DatabaseLayer.scala @@ -1,3 +1,20 @@ +/* + UNIT_CA5 - Stream management bot + Copyright (C) 2024 digimint + + 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 db import modules.uac.UACModule diff --git a/src/main/scala/db/internal/NotFoundException.scala b/src/main/scala/db/internal/NotFoundException.scala index 34d95e5..1e3ed4e 100644 --- a/src/main/scala/db/internal/NotFoundException.scala +++ b/src/main/scala/db/internal/NotFoundException.scala @@ -1,3 +1,20 @@ +/* + UNIT_CA5 - Stream management bot + Copyright (C) 2024 digimint + + 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 db.internal class NotFoundException extends Throwable diff --git a/src/main/scala/db/modules/DatabaseModule.scala b/src/main/scala/db/modules/DatabaseModule.scala index 9c150e5..2568166 100644 --- a/src/main/scala/db/modules/DatabaseModule.scala +++ b/src/main/scala/db/modules/DatabaseModule.scala @@ -1,3 +1,20 @@ +/* + UNIT_CA5 - Stream management bot + Copyright (C) 2024 digimint + + 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 db.modules import slick.dbio.DBIO diff --git a/src/main/scala/db/modules/executor/ExecutorModule.scala b/src/main/scala/db/modules/executor/ExecutorModule.scala index 4056812..2141073 100644 --- a/src/main/scala/db/modules/executor/ExecutorModule.scala +++ b/src/main/scala/db/modules/executor/ExecutorModule.scala @@ -1,3 +1,20 @@ +/* + UNIT_CA5 - Stream management bot + Copyright (C) 2024 digimint + + 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 db.modules.executor import slick.jdbc.JdbcProfile diff --git a/src/main/scala/db/modules/uac/UACAPI.scala b/src/main/scala/db/modules/uac/UACAPI.scala index afa7784..411fdce 100644 --- a/src/main/scala/db/modules/uac/UACAPI.scala +++ b/src/main/scala/db/modules/uac/UACAPI.scala @@ -1,3 +1,20 @@ +/* + UNIT_CA5 - Stream management bot + Copyright (C) 2024 digimint + + 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 db.modules.uac import db.internal.NotFoundException diff --git a/src/main/scala/db/modules/uac/UACModule.scala b/src/main/scala/db/modules/uac/UACModule.scala index d0e2fae..5cb022e 100644 --- a/src/main/scala/db/modules/uac/UACModule.scala +++ b/src/main/scala/db/modules/uac/UACModule.scala @@ -1,3 +1,20 @@ +/* + UNIT_CA5 - Stream management bot + Copyright (C) 2024 digimint + + 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 db.modules.uac import db.modules.DatabaseModule diff --git a/src/main/scala/db/modules/uac/UACQueries.scala b/src/main/scala/db/modules/uac/UACQueries.scala index c67ebcb..92666b7 100644 --- a/src/main/scala/db/modules/uac/UACQueries.scala +++ b/src/main/scala/db/modules/uac/UACQueries.scala @@ -1,3 +1,20 @@ +/* + UNIT_CA5 - Stream management bot + Copyright (C) 2024 digimint + + 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 db.modules.uac import db.modules.uac.UACSchema diff --git a/src/main/scala/twitch/api/TokenScope.scala b/src/main/scala/twitch/api/TokenScope.scala index 5836521..eeaf2d7 100644 --- a/src/main/scala/twitch/api/TokenScope.scala +++ b/src/main/scala/twitch/api/TokenScope.scala @@ -1,19 +1,19 @@ /* - UNIT_CA5 - Stream management bot - Copyright (C) 2024 digimint + UNIT_CA5 - Stream management bot + Copyright (C) 2024 digimint - 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 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. + 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 . + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . */ package twitch.api