From 4e2d877ada17d60d79ba86180b58fa281002427c Mon Sep 17 00:00:00 2001 From: Mykhailo Bobrovskyi Date: Sat, 4 Oct 2025 14:58:29 +0530 Subject: [PATCH] Update Copyright prefixes. --- .golangci.yaml | 2 +- Dockerfile | 2 +- LICENSE | 2 +- Makefile | 2 +- cmd/chat/main.go | 2 +- hack/tools/pinversion.go | 2 +- internal/chat/constants/constants.go | 2 +- internal/chat/domain/chat.go | 2 +- internal/chat/domain/chat_filter.go | 2 +- internal/chat/domain/chat_repo.go | 2 +- internal/chat/domain/chat_service.go | 2 +- internal/chat/domain/chat_type.go | 2 +- internal/chat/domain/message.go | 2 +- internal/chat/domain/message_filter.go | 2 +- internal/chat/domain/message_repo.go | 2 +- internal/chat/domain/message_service_impl.go | 2 +- internal/chat/domain/user_chat.go | 2 +- internal/chat/domain/user_chat_repo.go | 2 +- internal/chat/domain/user_service_contract.go | 2 +- internal/chat/errors/chat_not_found_error.go | 2 +- internal/chat/errors/incorrect_users_count_error.go | 2 +- internal/chat/errors/invalid_chat_name_error.go | 2 +- internal/chat/errors/invalid_chat_type_error.go | 2 +- internal/chat/http/chat_controller.go | 2 +- internal/chat/http/chat_dto.go | 2 +- internal/chat/http/chat_filter_mapper.go | 2 +- internal/chat/http/chat_mapper.go | 2 +- internal/chat/http/chat_query.go | 2 +- internal/chat/http/chat_service.go | 2 +- internal/chat/http/message_dto.go | 2 +- internal/chat/http/message_filter_mapper.go | 2 +- internal/chat/http/message_mapper.go | 2 +- internal/chat/http/message_query.go | 2 +- internal/chat/http/message_service.go | 2 +- internal/chat/http/user_chat_dto.go | 2 +- internal/chat/http/user_chat_mapper.go | 2 +- internal/chat/repository/chat_repo_impl.go | 2 +- internal/chat/repository/constants.go | 2 +- internal/chat/repository/message_dto.go | 2 +- internal/chat/repository/message_repo_impl.go | 2 +- internal/chat/repository/user_chat_repo_impl.go | 2 +- internal/chat/repository/user_chats_dto.go | 2 +- internal/chat/websocket/connection.go | 2 +- internal/chat/websocket/create_message_handler.go | 2 +- internal/chat/websocket/event_handler.go | 2 +- internal/chat/websocket/events.go | 2 +- internal/chat/websocket/message_dto.go | 2 +- internal/chat/websocket/message_mapper.go | 2 +- internal/chat/websocket/messages_status_dto.go | 2 +- internal/chat/websocket/set_current_chat_handler.go | 2 +- internal/chat/websocket/subscribe_chat_handler.go | 2 +- internal/chat/websocket/unset_current_room_handler.go | 2 +- internal/chat/websocket/unsubscribe_room_handler.go | 2 +- internal/chat/websocket/update_messages_status_handler.go | 2 +- internal/common/constants/constants.go | 2 +- internal/common/domain/image.go | 2 +- internal/common/domain/sort.go | 2 +- internal/common/domain/user.go | 2 +- internal/common/domain/user_filter.go | 2 +- internal/common/errors/bad_request_error.go | 2 +- internal/common/errors/base_error.go | 2 +- internal/common/errors/database_error.go | 2 +- internal/common/errors/forbidden_error.go | 2 +- internal/common/errors/not_found_error.go | 2 +- internal/common/errors/unauthorized_error.go | 2 +- internal/common/errors/undefined_error.go | 2 +- internal/common/errors/validation_error.go | 2 +- internal/common/http/page.go | 2 +- internal/common/http/sort_mapper.go | 2 +- internal/common/http/user_dto.go | 2 +- internal/common/http/user_mapper.go | 2 +- internal/common/repository/base_repo.go | 2 +- internal/infrastructure/api/app.go | 2 +- internal/infrastructure/api/controller.go | 2 +- internal/infrastructure/api/error_handler.go | 2 +- internal/infrastructure/api/health_handler.go | 2 +- internal/infrastructure/api/main.go | 2 +- internal/infrastructure/api/middleware.go | 2 +- internal/infrastructure/api/root_handler.go | 2 +- internal/infrastructure/configs/config.go | 2 +- internal/infrastructure/configs/environment.go | 2 +- internal/infrastructure/connector/connection.go | 2 +- internal/infrastructure/connector/connector.go | 2 +- internal/infrastructure/connector/event.go | 2 +- internal/infrastructure/connector/event_handler.go | 2 +- internal/infrastructure/connector/websocket_connection.go | 2 +- internal/infrastructure/database/postgres/client.go | 2 +- internal/infrastructure/logger/level.go | 2 +- internal/infrastructure/logger/logger.go | 2 +- internal/infrastructure/logger/logrus/logger.go | 2 +- internal/infrastructure/validator/validator.go | 2 +- internal/user/constants/constants.go | 2 +- internal/user/contract/user_service.go | 2 +- internal/user/contract/user_service_contract.go | 2 +- internal/user/domain/user_service_impl.go | 2 +- internal/user/errors/user_not_found_error.go | 2 +- internal/user/http/auth_middleware.go | 2 +- internal/user/http/user_controller.go | 2 +- internal/user/http/user_filter_mapper.go | 2 +- internal/user/http/user_query.go | 2 +- internal/user/http/user_service.go | 2 +- migrations/000001_create_chats_table.down.sql | 2 +- migrations/000001_create_chats_table.up.sql | 2 +- migrations/000002_create_user_chats_table.down.sql | 2 +- migrations/000002_create_user_chats_table.up.sql | 2 +- migrations/000003_create_messages_table.down.sql | 2 +- migrations/000003_create_messages_table.up.sql | 2 +- test/e2e/e2e_test.go | 2 +- test/e2e/suite_test.go | 2 +- test/e2e/user_test.go | 2 +- test/helpers/chat.go | 2 +- test/helpers/client.go | 2 +- test/helpers/constants.go | 2 +- test/helpers/e2e.go | 2 +- test/helpers/infrastructure.go | 2 +- test/helpers/mockserver.go | 2 +- test/helpers/postgres.go | 2 +- test/helpers/util.go | 2 +- test/integration/api/chat_test.go | 2 +- test/integration/api/suite_test.go | 2 +- test/integration/framework/framework.go | 2 +- test/integration/framework/http_client.go | 2 +- 122 files changed, 122 insertions(+), 122 deletions(-) diff --git a/.golangci.yaml b/.golangci.yaml index 2823468..7e4f876 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -28,7 +28,7 @@ linters: - exitAfterDefer goheader: template: |- - Copyright {{ YEAR }} Mykhailo Bobrovskyi + Copyright {{ YEAR }} MicroCore Tech Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Dockerfile b/Dockerfile index d02acdb..3580a8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# Copyright 2025 Mykhailo Bobrovskyi +# Copyright 2025 MicroCore Tech # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/LICENSE b/LICENSE index f76db4a..3ac88c3 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2025 Mykhailo Bobrovskyi + Copyright 2025 MicroCore Tech Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Makefile b/Makefile index 7c19ab0..9c818f9 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright 2025 Mykhailo Bobrovskyi +# Copyright 2025 MicroCore Tech # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/cmd/chat/main.go b/cmd/chat/main.go index 9b9c1b1..0304f42 100644 --- a/cmd/chat/main.go +++ b/cmd/chat/main.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/hack/tools/pinversion.go b/hack/tools/pinversion.go index 9f50de0..82c50cb 100644 --- a/hack/tools/pinversion.go +++ b/hack/tools/pinversion.go @@ -1,7 +1,7 @@ //go:build tools // +build tools -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/constants/constants.go b/internal/chat/constants/constants.go index 186c732..d380eae 100644 --- a/internal/chat/constants/constants.go +++ b/internal/chat/constants/constants.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/domain/chat.go b/internal/chat/domain/chat.go index a884522..de99a70 100644 --- a/internal/chat/domain/chat.go +++ b/internal/chat/domain/chat.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/domain/chat_filter.go b/internal/chat/domain/chat_filter.go index 411da44..0a69803 100644 --- a/internal/chat/domain/chat_filter.go +++ b/internal/chat/domain/chat_filter.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/domain/chat_repo.go b/internal/chat/domain/chat_repo.go index 3eaec06..953ff92 100644 --- a/internal/chat/domain/chat_repo.go +++ b/internal/chat/domain/chat_repo.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/domain/chat_service.go b/internal/chat/domain/chat_service.go index 4e7f602..d28af63 100644 --- a/internal/chat/domain/chat_service.go +++ b/internal/chat/domain/chat_service.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/domain/chat_type.go b/internal/chat/domain/chat_type.go index fd7fe30..76aa350 100644 --- a/internal/chat/domain/chat_type.go +++ b/internal/chat/domain/chat_type.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/domain/message.go b/internal/chat/domain/message.go index 5c91a39..c826016 100644 --- a/internal/chat/domain/message.go +++ b/internal/chat/domain/message.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/domain/message_filter.go b/internal/chat/domain/message_filter.go index a69c1b6..dea7efb 100644 --- a/internal/chat/domain/message_filter.go +++ b/internal/chat/domain/message_filter.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/domain/message_repo.go b/internal/chat/domain/message_repo.go index 28377b9..847724e 100644 --- a/internal/chat/domain/message_repo.go +++ b/internal/chat/domain/message_repo.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/domain/message_service_impl.go b/internal/chat/domain/message_service_impl.go index 9c1c234..d87b21a 100644 --- a/internal/chat/domain/message_service_impl.go +++ b/internal/chat/domain/message_service_impl.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/domain/user_chat.go b/internal/chat/domain/user_chat.go index 58d2348..1a09f7f 100644 --- a/internal/chat/domain/user_chat.go +++ b/internal/chat/domain/user_chat.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/domain/user_chat_repo.go b/internal/chat/domain/user_chat_repo.go index 575ced1..491608f 100644 --- a/internal/chat/domain/user_chat_repo.go +++ b/internal/chat/domain/user_chat_repo.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/domain/user_service_contract.go b/internal/chat/domain/user_service_contract.go index 2174781..6a34adc 100644 --- a/internal/chat/domain/user_service_contract.go +++ b/internal/chat/domain/user_service_contract.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/errors/chat_not_found_error.go b/internal/chat/errors/chat_not_found_error.go index bf1ce0f..f968dd9 100644 --- a/internal/chat/errors/chat_not_found_error.go +++ b/internal/chat/errors/chat_not_found_error.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/errors/incorrect_users_count_error.go b/internal/chat/errors/incorrect_users_count_error.go index c0a7596..9ac472c 100644 --- a/internal/chat/errors/incorrect_users_count_error.go +++ b/internal/chat/errors/incorrect_users_count_error.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/errors/invalid_chat_name_error.go b/internal/chat/errors/invalid_chat_name_error.go index 51013d3..311bc4e 100644 --- a/internal/chat/errors/invalid_chat_name_error.go +++ b/internal/chat/errors/invalid_chat_name_error.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/errors/invalid_chat_type_error.go b/internal/chat/errors/invalid_chat_type_error.go index 1315d4e..d1bc064 100644 --- a/internal/chat/errors/invalid_chat_type_error.go +++ b/internal/chat/errors/invalid_chat_type_error.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/http/chat_controller.go b/internal/chat/http/chat_controller.go index b250b35..d39da5b 100644 --- a/internal/chat/http/chat_controller.go +++ b/internal/chat/http/chat_controller.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/http/chat_dto.go b/internal/chat/http/chat_dto.go index de2e670..d894ea4 100644 --- a/internal/chat/http/chat_dto.go +++ b/internal/chat/http/chat_dto.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/http/chat_filter_mapper.go b/internal/chat/http/chat_filter_mapper.go index 4414201..b65b01f 100644 --- a/internal/chat/http/chat_filter_mapper.go +++ b/internal/chat/http/chat_filter_mapper.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/http/chat_mapper.go b/internal/chat/http/chat_mapper.go index ac7eaed..6d2799c 100644 --- a/internal/chat/http/chat_mapper.go +++ b/internal/chat/http/chat_mapper.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/http/chat_query.go b/internal/chat/http/chat_query.go index f79bb46..25f24ff 100644 --- a/internal/chat/http/chat_query.go +++ b/internal/chat/http/chat_query.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/http/chat_service.go b/internal/chat/http/chat_service.go index dc5d1b1..d0f555c 100644 --- a/internal/chat/http/chat_service.go +++ b/internal/chat/http/chat_service.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/http/message_dto.go b/internal/chat/http/message_dto.go index b770c36..c5a5df0 100644 --- a/internal/chat/http/message_dto.go +++ b/internal/chat/http/message_dto.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/http/message_filter_mapper.go b/internal/chat/http/message_filter_mapper.go index 9fe0600..f50159b 100644 --- a/internal/chat/http/message_filter_mapper.go +++ b/internal/chat/http/message_filter_mapper.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/http/message_mapper.go b/internal/chat/http/message_mapper.go index 813eb9d..1da225a 100644 --- a/internal/chat/http/message_mapper.go +++ b/internal/chat/http/message_mapper.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/http/message_query.go b/internal/chat/http/message_query.go index 19bbc80..139fadb 100644 --- a/internal/chat/http/message_query.go +++ b/internal/chat/http/message_query.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/http/message_service.go b/internal/chat/http/message_service.go index 2d43527..eaa67f5 100644 --- a/internal/chat/http/message_service.go +++ b/internal/chat/http/message_service.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/http/user_chat_dto.go b/internal/chat/http/user_chat_dto.go index afdc5de..d126434 100644 --- a/internal/chat/http/user_chat_dto.go +++ b/internal/chat/http/user_chat_dto.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/http/user_chat_mapper.go b/internal/chat/http/user_chat_mapper.go index 64dcbb6..0ab1a0e 100644 --- a/internal/chat/http/user_chat_mapper.go +++ b/internal/chat/http/user_chat_mapper.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/repository/chat_repo_impl.go b/internal/chat/repository/chat_repo_impl.go index 4d95a15..d87d0a9 100644 --- a/internal/chat/repository/chat_repo_impl.go +++ b/internal/chat/repository/chat_repo_impl.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/repository/constants.go b/internal/chat/repository/constants.go index 3efd6eb..59e2607 100644 --- a/internal/chat/repository/constants.go +++ b/internal/chat/repository/constants.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/repository/message_dto.go b/internal/chat/repository/message_dto.go index e7400e6..af8d5f8 100644 --- a/internal/chat/repository/message_dto.go +++ b/internal/chat/repository/message_dto.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/repository/message_repo_impl.go b/internal/chat/repository/message_repo_impl.go index 94843d7..1764d7f 100644 --- a/internal/chat/repository/message_repo_impl.go +++ b/internal/chat/repository/message_repo_impl.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/repository/user_chat_repo_impl.go b/internal/chat/repository/user_chat_repo_impl.go index ac43bed..dc2b251 100644 --- a/internal/chat/repository/user_chat_repo_impl.go +++ b/internal/chat/repository/user_chat_repo_impl.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/repository/user_chats_dto.go b/internal/chat/repository/user_chats_dto.go index a98d089..34c9cf6 100644 --- a/internal/chat/repository/user_chats_dto.go +++ b/internal/chat/repository/user_chats_dto.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/websocket/connection.go b/internal/chat/websocket/connection.go index bbbdec0..0c8c5a9 100644 --- a/internal/chat/websocket/connection.go +++ b/internal/chat/websocket/connection.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/websocket/create_message_handler.go b/internal/chat/websocket/create_message_handler.go index ec6d949..59c59d0 100644 --- a/internal/chat/websocket/create_message_handler.go +++ b/internal/chat/websocket/create_message_handler.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/websocket/event_handler.go b/internal/chat/websocket/event_handler.go index 883755e..0e0ae92 100644 --- a/internal/chat/websocket/event_handler.go +++ b/internal/chat/websocket/event_handler.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/websocket/events.go b/internal/chat/websocket/events.go index 72b4041..ba11b32 100644 --- a/internal/chat/websocket/events.go +++ b/internal/chat/websocket/events.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/websocket/message_dto.go b/internal/chat/websocket/message_dto.go index 6cd4edf..05b8bdb 100644 --- a/internal/chat/websocket/message_dto.go +++ b/internal/chat/websocket/message_dto.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/websocket/message_mapper.go b/internal/chat/websocket/message_mapper.go index 00e8494..c1b4abd 100644 --- a/internal/chat/websocket/message_mapper.go +++ b/internal/chat/websocket/message_mapper.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/websocket/messages_status_dto.go b/internal/chat/websocket/messages_status_dto.go index be7fde0..b6546c6 100644 --- a/internal/chat/websocket/messages_status_dto.go +++ b/internal/chat/websocket/messages_status_dto.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/websocket/set_current_chat_handler.go b/internal/chat/websocket/set_current_chat_handler.go index 37e117f..1592b71 100644 --- a/internal/chat/websocket/set_current_chat_handler.go +++ b/internal/chat/websocket/set_current_chat_handler.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/websocket/subscribe_chat_handler.go b/internal/chat/websocket/subscribe_chat_handler.go index f664edd..dad7e14 100644 --- a/internal/chat/websocket/subscribe_chat_handler.go +++ b/internal/chat/websocket/subscribe_chat_handler.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/websocket/unset_current_room_handler.go b/internal/chat/websocket/unset_current_room_handler.go index b78f8e6..f8e36c7 100644 --- a/internal/chat/websocket/unset_current_room_handler.go +++ b/internal/chat/websocket/unset_current_room_handler.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/websocket/unsubscribe_room_handler.go b/internal/chat/websocket/unsubscribe_room_handler.go index bd14ee9..a29e679 100644 --- a/internal/chat/websocket/unsubscribe_room_handler.go +++ b/internal/chat/websocket/unsubscribe_room_handler.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/chat/websocket/update_messages_status_handler.go b/internal/chat/websocket/update_messages_status_handler.go index 4244cae..525c3f3 100644 --- a/internal/chat/websocket/update_messages_status_handler.go +++ b/internal/chat/websocket/update_messages_status_handler.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/constants/constants.go b/internal/common/constants/constants.go index bc8944a..3370612 100644 --- a/internal/common/constants/constants.go +++ b/internal/common/constants/constants.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/domain/image.go b/internal/common/domain/image.go index 11a41b9..216cc2b 100644 --- a/internal/common/domain/image.go +++ b/internal/common/domain/image.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/domain/sort.go b/internal/common/domain/sort.go index 2456330..69bbaf7 100644 --- a/internal/common/domain/sort.go +++ b/internal/common/domain/sort.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/domain/user.go b/internal/common/domain/user.go index ea1894c..765082e 100644 --- a/internal/common/domain/user.go +++ b/internal/common/domain/user.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/domain/user_filter.go b/internal/common/domain/user_filter.go index 54407d1..4b84e8a 100644 --- a/internal/common/domain/user_filter.go +++ b/internal/common/domain/user_filter.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/errors/bad_request_error.go b/internal/common/errors/bad_request_error.go index 591ab3b..7a5bdc8 100644 --- a/internal/common/errors/bad_request_error.go +++ b/internal/common/errors/bad_request_error.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/errors/base_error.go b/internal/common/errors/base_error.go index 6d2552d..2b5b3c8 100644 --- a/internal/common/errors/base_error.go +++ b/internal/common/errors/base_error.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/errors/database_error.go b/internal/common/errors/database_error.go index 4f9b412..54ae411 100644 --- a/internal/common/errors/database_error.go +++ b/internal/common/errors/database_error.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/errors/forbidden_error.go b/internal/common/errors/forbidden_error.go index bd8e457..d1f4635 100644 --- a/internal/common/errors/forbidden_error.go +++ b/internal/common/errors/forbidden_error.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/errors/not_found_error.go b/internal/common/errors/not_found_error.go index 8d4f538..24855f0 100644 --- a/internal/common/errors/not_found_error.go +++ b/internal/common/errors/not_found_error.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/errors/unauthorized_error.go b/internal/common/errors/unauthorized_error.go index 011219a..2d12047 100644 --- a/internal/common/errors/unauthorized_error.go +++ b/internal/common/errors/unauthorized_error.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/errors/undefined_error.go b/internal/common/errors/undefined_error.go index 9e872b1..5fcc749 100644 --- a/internal/common/errors/undefined_error.go +++ b/internal/common/errors/undefined_error.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/errors/validation_error.go b/internal/common/errors/validation_error.go index 921d18a..98395e0 100644 --- a/internal/common/errors/validation_error.go +++ b/internal/common/errors/validation_error.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/http/page.go b/internal/common/http/page.go index 3bd6312..193f082 100644 --- a/internal/common/http/page.go +++ b/internal/common/http/page.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/http/sort_mapper.go b/internal/common/http/sort_mapper.go index f95d5f0..a120901 100644 --- a/internal/common/http/sort_mapper.go +++ b/internal/common/http/sort_mapper.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/http/user_dto.go b/internal/common/http/user_dto.go index 16a56d3..e7c5c65 100644 --- a/internal/common/http/user_dto.go +++ b/internal/common/http/user_dto.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/http/user_mapper.go b/internal/common/http/user_mapper.go index d4d8552..3054ff4 100644 --- a/internal/common/http/user_mapper.go +++ b/internal/common/http/user_mapper.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/common/repository/base_repo.go b/internal/common/repository/base_repo.go index 27b97a1..0fc6ec6 100644 --- a/internal/common/repository/base_repo.go +++ b/internal/common/repository/base_repo.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/api/app.go b/internal/infrastructure/api/app.go index d222ddc..f87e188 100644 --- a/internal/infrastructure/api/app.go +++ b/internal/infrastructure/api/app.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/api/controller.go b/internal/infrastructure/api/controller.go index 43a73ff..16d9b2b 100644 --- a/internal/infrastructure/api/controller.go +++ b/internal/infrastructure/api/controller.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/api/error_handler.go b/internal/infrastructure/api/error_handler.go index ea67234..affa3e1 100644 --- a/internal/infrastructure/api/error_handler.go +++ b/internal/infrastructure/api/error_handler.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/api/health_handler.go b/internal/infrastructure/api/health_handler.go index 9375709..f227c03 100644 --- a/internal/infrastructure/api/health_handler.go +++ b/internal/infrastructure/api/health_handler.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/api/main.go b/internal/infrastructure/api/main.go index 43523cd..38285e2 100644 --- a/internal/infrastructure/api/main.go +++ b/internal/infrastructure/api/main.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/api/middleware.go b/internal/infrastructure/api/middleware.go index f850e9f..71ee208 100644 --- a/internal/infrastructure/api/middleware.go +++ b/internal/infrastructure/api/middleware.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/api/root_handler.go b/internal/infrastructure/api/root_handler.go index 4d8691a..84109c0 100644 --- a/internal/infrastructure/api/root_handler.go +++ b/internal/infrastructure/api/root_handler.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/configs/config.go b/internal/infrastructure/configs/config.go index 90204ca..8c14a45 100644 --- a/internal/infrastructure/configs/config.go +++ b/internal/infrastructure/configs/config.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/configs/environment.go b/internal/infrastructure/configs/environment.go index 01dea11..ad91ebf 100644 --- a/internal/infrastructure/configs/environment.go +++ b/internal/infrastructure/configs/environment.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/connector/connection.go b/internal/infrastructure/connector/connection.go index b2ad578..49cac74 100644 --- a/internal/infrastructure/connector/connection.go +++ b/internal/infrastructure/connector/connection.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/connector/connector.go b/internal/infrastructure/connector/connector.go index aeb2745..a1b59d4 100644 --- a/internal/infrastructure/connector/connector.go +++ b/internal/infrastructure/connector/connector.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/connector/event.go b/internal/infrastructure/connector/event.go index bbbebb3..dc95c0d 100644 --- a/internal/infrastructure/connector/event.go +++ b/internal/infrastructure/connector/event.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/connector/event_handler.go b/internal/infrastructure/connector/event_handler.go index 044447c..454ac7d 100644 --- a/internal/infrastructure/connector/event_handler.go +++ b/internal/infrastructure/connector/event_handler.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/connector/websocket_connection.go b/internal/infrastructure/connector/websocket_connection.go index 778b29e..961634e 100644 --- a/internal/infrastructure/connector/websocket_connection.go +++ b/internal/infrastructure/connector/websocket_connection.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/database/postgres/client.go b/internal/infrastructure/database/postgres/client.go index 6789dd8..f050516 100644 --- a/internal/infrastructure/database/postgres/client.go +++ b/internal/infrastructure/database/postgres/client.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/logger/level.go b/internal/infrastructure/logger/level.go index 6bfe353..cbef094 100644 --- a/internal/infrastructure/logger/level.go +++ b/internal/infrastructure/logger/level.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/logger/logger.go b/internal/infrastructure/logger/logger.go index def6d87..6056638 100644 --- a/internal/infrastructure/logger/logger.go +++ b/internal/infrastructure/logger/logger.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/logger/logrus/logger.go b/internal/infrastructure/logger/logrus/logger.go index 2ab2d2e..0ab936f 100644 --- a/internal/infrastructure/logger/logrus/logger.go +++ b/internal/infrastructure/logger/logrus/logger.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/infrastructure/validator/validator.go b/internal/infrastructure/validator/validator.go index 19be127..ec27c2b 100644 --- a/internal/infrastructure/validator/validator.go +++ b/internal/infrastructure/validator/validator.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/user/constants/constants.go b/internal/user/constants/constants.go index 5fa85d9..509cd8c 100644 --- a/internal/user/constants/constants.go +++ b/internal/user/constants/constants.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/user/contract/user_service.go b/internal/user/contract/user_service.go index 5718986..ae1f57d 100644 --- a/internal/user/contract/user_service.go +++ b/internal/user/contract/user_service.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/user/contract/user_service_contract.go b/internal/user/contract/user_service_contract.go index 9332e8f..4883ab9 100644 --- a/internal/user/contract/user_service_contract.go +++ b/internal/user/contract/user_service_contract.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/user/domain/user_service_impl.go b/internal/user/domain/user_service_impl.go index 5532691..26886bf 100644 --- a/internal/user/domain/user_service_impl.go +++ b/internal/user/domain/user_service_impl.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/user/errors/user_not_found_error.go b/internal/user/errors/user_not_found_error.go index 82595da..29b330b 100644 --- a/internal/user/errors/user_not_found_error.go +++ b/internal/user/errors/user_not_found_error.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/user/http/auth_middleware.go b/internal/user/http/auth_middleware.go index 03260eb..ef66cf6 100644 --- a/internal/user/http/auth_middleware.go +++ b/internal/user/http/auth_middleware.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/user/http/user_controller.go b/internal/user/http/user_controller.go index 4b0576b..73d87cb 100644 --- a/internal/user/http/user_controller.go +++ b/internal/user/http/user_controller.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/user/http/user_filter_mapper.go b/internal/user/http/user_filter_mapper.go index a2d42be..63daba7 100644 --- a/internal/user/http/user_filter_mapper.go +++ b/internal/user/http/user_filter_mapper.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/user/http/user_query.go b/internal/user/http/user_query.go index b0bca86..c3324ee 100644 --- a/internal/user/http/user_query.go +++ b/internal/user/http/user_query.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/user/http/user_service.go b/internal/user/http/user_service.go index 6a39082..5fb379e 100644 --- a/internal/user/http/user_service.go +++ b/internal/user/http/user_service.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/migrations/000001_create_chats_table.down.sql b/migrations/000001_create_chats_table.down.sql index f5d7887..016c547 100644 --- a/migrations/000001_create_chats_table.down.sql +++ b/migrations/000001_create_chats_table.down.sql @@ -1,4 +1,4 @@ --- Copyright 2025 Mykhailo Bobrovskyi +-- Copyright 2025 MicroCore Tech -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. diff --git a/migrations/000001_create_chats_table.up.sql b/migrations/000001_create_chats_table.up.sql index 642c70c..e50d332 100644 --- a/migrations/000001_create_chats_table.up.sql +++ b/migrations/000001_create_chats_table.up.sql @@ -1,4 +1,4 @@ --- Copyright 2025 Mykhailo Bobrovskyi +-- Copyright 2025 MicroCore Tech -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. diff --git a/migrations/000002_create_user_chats_table.down.sql b/migrations/000002_create_user_chats_table.down.sql index 2e2e1b9..b40ea7b 100644 --- a/migrations/000002_create_user_chats_table.down.sql +++ b/migrations/000002_create_user_chats_table.down.sql @@ -1,4 +1,4 @@ --- Copyright 2025 Mykhailo Bobrovskyi +-- Copyright 2025 MicroCore Tech -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. diff --git a/migrations/000002_create_user_chats_table.up.sql b/migrations/000002_create_user_chats_table.up.sql index f86dbd0..c6a9f8a 100644 --- a/migrations/000002_create_user_chats_table.up.sql +++ b/migrations/000002_create_user_chats_table.up.sql @@ -1,4 +1,4 @@ --- Copyright 2025 Mykhailo Bobrovskyi +-- Copyright 2025 MicroCore Tech -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. diff --git a/migrations/000003_create_messages_table.down.sql b/migrations/000003_create_messages_table.down.sql index ac80145..18a22b7 100644 --- a/migrations/000003_create_messages_table.down.sql +++ b/migrations/000003_create_messages_table.down.sql @@ -1,4 +1,4 @@ --- Copyright 2025 Mykhailo Bobrovskyi +-- Copyright 2025 MicroCore Tech -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. diff --git a/migrations/000003_create_messages_table.up.sql b/migrations/000003_create_messages_table.up.sql index f403fce..2140fdb 100644 --- a/migrations/000003_create_messages_table.up.sql +++ b/migrations/000003_create_messages_table.up.sql @@ -1,4 +1,4 @@ --- Copyright 2025 Mykhailo Bobrovskyi +-- Copyright 2025 MicroCore Tech -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. diff --git a/test/e2e/e2e_test.go b/test/e2e/e2e_test.go index ce937c1..6a08440 100644 --- a/test/e2e/e2e_test.go +++ b/test/e2e/e2e_test.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/e2e/suite_test.go b/test/e2e/suite_test.go index 71bab84..cacc520 100644 --- a/test/e2e/suite_test.go +++ b/test/e2e/suite_test.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/e2e/user_test.go b/test/e2e/user_test.go index 065ebfc..0a75b64 100644 --- a/test/e2e/user_test.go +++ b/test/e2e/user_test.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/helpers/chat.go b/test/helpers/chat.go index efa1f6d..6f00390 100644 --- a/test/helpers/chat.go +++ b/test/helpers/chat.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/helpers/client.go b/test/helpers/client.go index 8997a80..0ab871c 100644 --- a/test/helpers/client.go +++ b/test/helpers/client.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/helpers/constants.go b/test/helpers/constants.go index 8458bd4..962ea2e 100644 --- a/test/helpers/constants.go +++ b/test/helpers/constants.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/helpers/e2e.go b/test/helpers/e2e.go index 1d10fd8..da2bd10 100644 --- a/test/helpers/e2e.go +++ b/test/helpers/e2e.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/helpers/infrastructure.go b/test/helpers/infrastructure.go index 3470ba8..7458c7d 100644 --- a/test/helpers/infrastructure.go +++ b/test/helpers/infrastructure.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/helpers/mockserver.go b/test/helpers/mockserver.go index 2f0f3ac..63e1b00 100644 --- a/test/helpers/mockserver.go +++ b/test/helpers/mockserver.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/helpers/postgres.go b/test/helpers/postgres.go index f1fd90c..c176bce 100644 --- a/test/helpers/postgres.go +++ b/test/helpers/postgres.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/helpers/util.go b/test/helpers/util.go index c3093e7..b8601bd 100644 --- a/test/helpers/util.go +++ b/test/helpers/util.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/integration/api/chat_test.go b/test/integration/api/chat_test.go index e1c1b62..db9a4b7 100644 --- a/test/integration/api/chat_test.go +++ b/test/integration/api/chat_test.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/integration/api/suite_test.go b/test/integration/api/suite_test.go index 72d8b58..7d06b43 100644 --- a/test/integration/api/suite_test.go +++ b/test/integration/api/suite_test.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/integration/framework/framework.go b/test/integration/framework/framework.go index ae30f03..3303e3c 100644 --- a/test/integration/framework/framework.go +++ b/test/integration/framework/framework.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/test/integration/framework/http_client.go b/test/integration/framework/http_client.go index 99d8b90..c68e7bb 100644 --- a/test/integration/framework/http_client.go +++ b/test/integration/framework/http_client.go @@ -1,4 +1,4 @@ -// Copyright 2025 Mykhailo Bobrovskyi +// Copyright 2025 MicroCore Tech // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.