From 68ace8e39fe225a835d064b8fa3c93350b4bd6f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20L=C3=A9on?= Date: Thu, 17 Aug 2023 19:53:40 +0200 Subject: [PATCH] chore: add license part --- .../lib/src/core/core.dart | 16 ++++++++++++++++ .../core/exceptions/notification_exeption.dart | 16 ++++++++++++++++ .../core/extensions/build_context_extension.dart | 16 ++++++++++++++++ .../lib/src/data/data.dart | 16 ++++++++++++++++ .../notification_repository_impl.dart | 16 ++++++++++++++++ .../remote/notification_remote_data_source.dart | 16 ++++++++++++++++ .../lib/src/domain/domain.dart | 16 ++++++++++++++++ .../lib/src/domain/entities/entities.dart | 16 ++++++++++++++++ .../domain/entities/remote_notifications.dart | 16 ++++++++++++++++ .../repositories/notification_repository.dart | 16 ++++++++++++++++ .../src/domain/repositories/repositories.dart | 16 ++++++++++++++++ .../get_cloud_messaging_token_use_case.dart | 16 ++++++++++++++++ .../usecases/init_cloud_messaging_use_case.dart | 16 ++++++++++++++++ .../usecases/listen_notification_use_case.dart | 16 ++++++++++++++++ ...uest_cloud_messaging_permission_use_case.dart | 16 ++++++++++++++++ .../lib/src/domain/usecases/subscribe.dart | 16 ++++++++++++++++ .../lib/src/domain/usecases/unsubscribe.dart | 16 ++++++++++++++++ .../lib/src/domain/usecases/usecases.dart | 16 ++++++++++++++++ .../bloc/cloud_messaging_cubit.dart | 16 ++++++++++++++++ .../bloc/cloud_messaging_state.dart | 16 ++++++++++++++++ .../wyatt_notification_bloc/lib/src/src.dart | 16 ++++++++++++++++ .../lib/src/wyatt_notification_bloc_base.dart | 4 ---- 22 files changed, 336 insertions(+), 4 deletions(-) delete mode 100644 packages/wyatt_notification_bloc/lib/src/wyatt_notification_bloc_base.dart diff --git a/packages/wyatt_notification_bloc/lib/src/core/core.dart b/packages/wyatt_notification_bloc/lib/src/core/core.dart index 3388e49f..d76a2542 100644 --- a/packages/wyatt_notification_bloc/lib/src/core/core.dart +++ b/packages/wyatt_notification_bloc/lib/src/core/core.dart @@ -1,2 +1,18 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + export './exceptions/notification_exeption.dart'; export './extensions/build_context_extension.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/core/exceptions/notification_exeption.dart b/packages/wyatt_notification_bloc/lib/src/core/exceptions/notification_exeption.dart index edb9d27d..132ef277 100644 --- a/packages/wyatt_notification_bloc/lib/src/core/exceptions/notification_exeption.dart +++ b/packages/wyatt_notification_bloc/lib/src/core/exceptions/notification_exeption.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + import 'package:wyatt_architecture/wyatt_architecture.dart'; class NotificationException extends AppException { diff --git a/packages/wyatt_notification_bloc/lib/src/core/extensions/build_context_extension.dart b/packages/wyatt_notification_bloc/lib/src/core/extensions/build_context_extension.dart index 2c32ec27..89a6bdc8 100644 --- a/packages/wyatt_notification_bloc/lib/src/core/extensions/build_context_extension.dart +++ b/packages/wyatt_notification_bloc/lib/src/core/extensions/build_context_extension.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + import 'package:flutter/widgets.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:wyatt_cloud_messaging_bloc/wyatt_cloud_messaging_bloc.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/data/data.dart b/packages/wyatt_notification_bloc/lib/src/data/data.dart index 720cb191..36e6f4d5 100644 --- a/packages/wyatt_notification_bloc/lib/src/data/data.dart +++ b/packages/wyatt_notification_bloc/lib/src/data/data.dart @@ -1 +1,17 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + export 'repositories/notification_repository_impl.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/data/repositories/notification_repository_impl.dart b/packages/wyatt_notification_bloc/lib/src/data/repositories/notification_repository_impl.dart index 071f2aee..e3fab677 100644 --- a/packages/wyatt_notification_bloc/lib/src/data/repositories/notification_repository_impl.dart +++ b/packages/wyatt_notification_bloc/lib/src/data/repositories/notification_repository_impl.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + import 'package:wyatt_architecture/wyatt_architecture.dart'; import 'package:wyatt_cloud_messaging_bloc/src/core/exceptions/notification_exeption.dart'; import 'package:wyatt_cloud_messaging_bloc/src/domain/data_sources/remote/notification_remote_data_source.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/domain/data_sources/remote/notification_remote_data_source.dart b/packages/wyatt_notification_bloc/lib/src/domain/data_sources/remote/notification_remote_data_source.dart index a2426d87..3ae88e8b 100644 --- a/packages/wyatt_notification_bloc/lib/src/domain/data_sources/remote/notification_remote_data_source.dart +++ b/packages/wyatt_notification_bloc/lib/src/domain/data_sources/remote/notification_remote_data_source.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + import 'package:wyatt_architecture/wyatt_architecture.dart'; import 'package:wyatt_cloud_messaging_bloc/src/domain/entities/remote_notifications.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/domain/domain.dart b/packages/wyatt_notification_bloc/lib/src/domain/domain.dart index ff77d1c6..0ab2750e 100644 --- a/packages/wyatt_notification_bloc/lib/src/domain/domain.dart +++ b/packages/wyatt_notification_bloc/lib/src/domain/domain.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + export 'entities/entities.dart'; export 'repositories/repositories.dart'; export 'usecases/usecases.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/domain/entities/entities.dart b/packages/wyatt_notification_bloc/lib/src/domain/entities/entities.dart index 64efe1f4..71ca52ef 100644 --- a/packages/wyatt_notification_bloc/lib/src/domain/entities/entities.dart +++ b/packages/wyatt_notification_bloc/lib/src/domain/entities/entities.dart @@ -1 +1,17 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + export 'remote_notifications.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/domain/entities/remote_notifications.dart b/packages/wyatt_notification_bloc/lib/src/domain/entities/remote_notifications.dart index 9b279c7a..79c2424c 100644 --- a/packages/wyatt_notification_bloc/lib/src/domain/entities/remote_notifications.dart +++ b/packages/wyatt_notification_bloc/lib/src/domain/entities/remote_notifications.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + import 'package:wyatt_architecture/wyatt_architecture.dart'; class RemoteNotification extends Entity { diff --git a/packages/wyatt_notification_bloc/lib/src/domain/repositories/notification_repository.dart b/packages/wyatt_notification_bloc/lib/src/domain/repositories/notification_repository.dart index dd9f3b54..013694ec 100644 --- a/packages/wyatt_notification_bloc/lib/src/domain/repositories/notification_repository.dart +++ b/packages/wyatt_notification_bloc/lib/src/domain/repositories/notification_repository.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + import 'dart:async'; import 'package:wyatt_architecture/wyatt_architecture.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/domain/repositories/repositories.dart b/packages/wyatt_notification_bloc/lib/src/domain/repositories/repositories.dart index afbd448b..12accae5 100644 --- a/packages/wyatt_notification_bloc/lib/src/domain/repositories/repositories.dart +++ b/packages/wyatt_notification_bloc/lib/src/domain/repositories/repositories.dart @@ -1 +1,17 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + export 'notification_repository.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/domain/usecases/get_cloud_messaging_token_use_case.dart b/packages/wyatt_notification_bloc/lib/src/domain/usecases/get_cloud_messaging_token_use_case.dart index 2fb03544..6a39d65f 100644 --- a/packages/wyatt_notification_bloc/lib/src/domain/usecases/get_cloud_messaging_token_use_case.dart +++ b/packages/wyatt_notification_bloc/lib/src/domain/usecases/get_cloud_messaging_token_use_case.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + import 'package:wyatt_architecture/wyatt_architecture.dart'; import 'package:wyatt_cloud_messaging_bloc/src/domain/repositories/notification_repository.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/domain/usecases/init_cloud_messaging_use_case.dart b/packages/wyatt_notification_bloc/lib/src/domain/usecases/init_cloud_messaging_use_case.dart index 1716bb89..1499bc34 100644 --- a/packages/wyatt_notification_bloc/lib/src/domain/usecases/init_cloud_messaging_use_case.dart +++ b/packages/wyatt_notification_bloc/lib/src/domain/usecases/init_cloud_messaging_use_case.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + import 'package:wyatt_architecture/wyatt_architecture.dart'; import 'package:wyatt_cloud_messaging_bloc/src/domain/repositories/notification_repository.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/domain/usecases/listen_notification_use_case.dart b/packages/wyatt_notification_bloc/lib/src/domain/usecases/listen_notification_use_case.dart index 0f93fd56..49506386 100644 --- a/packages/wyatt_notification_bloc/lib/src/domain/usecases/listen_notification_use_case.dart +++ b/packages/wyatt_notification_bloc/lib/src/domain/usecases/listen_notification_use_case.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + import 'dart:async'; import 'package:rxdart/rxdart.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/domain/usecases/request_cloud_messaging_permission_use_case.dart b/packages/wyatt_notification_bloc/lib/src/domain/usecases/request_cloud_messaging_permission_use_case.dart index 5e235d1d..9dc714ea 100644 --- a/packages/wyatt_notification_bloc/lib/src/domain/usecases/request_cloud_messaging_permission_use_case.dart +++ b/packages/wyatt_notification_bloc/lib/src/domain/usecases/request_cloud_messaging_permission_use_case.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + import 'package:wyatt_architecture/wyatt_architecture.dart'; import 'package:wyatt_cloud_messaging_bloc/src/domain/repositories/notification_repository.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/domain/usecases/subscribe.dart b/packages/wyatt_notification_bloc/lib/src/domain/usecases/subscribe.dart index f3be9614..590eeb6f 100644 --- a/packages/wyatt_notification_bloc/lib/src/domain/usecases/subscribe.dart +++ b/packages/wyatt_notification_bloc/lib/src/domain/usecases/subscribe.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + import 'dart:async'; import 'package:wyatt_architecture/wyatt_architecture.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/domain/usecases/unsubscribe.dart b/packages/wyatt_notification_bloc/lib/src/domain/usecases/unsubscribe.dart index b9c62bb6..d685188b 100644 --- a/packages/wyatt_notification_bloc/lib/src/domain/usecases/unsubscribe.dart +++ b/packages/wyatt_notification_bloc/lib/src/domain/usecases/unsubscribe.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + import 'dart:async'; import 'package:wyatt_architecture/wyatt_architecture.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/domain/usecases/usecases.dart b/packages/wyatt_notification_bloc/lib/src/domain/usecases/usecases.dart index dedbd5c8..5fb4d927 100644 --- a/packages/wyatt_notification_bloc/lib/src/domain/usecases/usecases.dart +++ b/packages/wyatt_notification_bloc/lib/src/domain/usecases/usecases.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + export './get_cloud_messaging_token_use_case.dart'; export './init_cloud_messaging_use_case.dart'; export './listen_notification_use_case.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/features/notifications/bloc/cloud_messaging_cubit.dart b/packages/wyatt_notification_bloc/lib/src/features/notifications/bloc/cloud_messaging_cubit.dart index 883abbc8..4c8e68eb 100644 --- a/packages/wyatt_notification_bloc/lib/src/features/notifications/bloc/cloud_messaging_cubit.dart +++ b/packages/wyatt_notification_bloc/lib/src/features/notifications/bloc/cloud_messaging_cubit.dart @@ -6,6 +6,22 @@ import 'package:wyatt_architecture/wyatt_architecture.dart'; import 'package:wyatt_cloud_messaging_bloc/src/domain/entities/remote_notifications.dart'; import 'package:wyatt_cloud_messaging_bloc/src/domain/usecases/listen_notification_use_case.dart'; import 'package:wyatt_cloud_messaging_bloc/src/domain/usecases/subscribe.dart'; +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + import 'package:wyatt_cloud_messaging_bloc/src/domain/usecases/unsubscribe.dart'; part 'cloud_messaging_state.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/features/notifications/bloc/cloud_messaging_state.dart b/packages/wyatt_notification_bloc/lib/src/features/notifications/bloc/cloud_messaging_state.dart index addb2ea6..4d2810d5 100644 --- a/packages/wyatt_notification_bloc/lib/src/features/notifications/bloc/cloud_messaging_state.dart +++ b/packages/wyatt_notification_bloc/lib/src/features/notifications/bloc/cloud_messaging_state.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + part of 'cloud_messaging_cubit.dart'; class CloudmessagingState extends Equatable { diff --git a/packages/wyatt_notification_bloc/lib/src/src.dart b/packages/wyatt_notification_bloc/lib/src/src.dart index c3537a44..0f86562b 100644 --- a/packages/wyatt_notification_bloc/lib/src/src.dart +++ b/packages/wyatt_notification_bloc/lib/src/src.dart @@ -1,3 +1,19 @@ +// Copyright (C) 2023 WYATT GROUP +// Please see the AUTHORS file for details. +// +// 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 +// 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 . + export 'data/data.dart'; export 'domain/domain.dart'; export 'features/notifications/bloc/cloud_messaging_cubit.dart'; diff --git a/packages/wyatt_notification_bloc/lib/src/wyatt_notification_bloc_base.dart b/packages/wyatt_notification_bloc/lib/src/wyatt_notification_bloc_base.dart deleted file mode 100644 index 41deac69..00000000 --- a/packages/wyatt_notification_bloc/lib/src/wyatt_notification_bloc_base.dart +++ /dev/null @@ -1,4 +0,0 @@ -/// Checks if you are awesome. Spoiler: you are. -class Awesome { - bool get isAwesome => true; -}