From c1561a09f8db7a34e6353dfda140343d5242efaf Mon Sep 17 00:00:00 2001 From: Mohamed Elmoslemany <117270519+mo-c4t@users.noreply.github.com> Date: Wed, 8 Jan 2025 09:20:33 +0100 Subject: [PATCH] update license headers year to 2025 (#85) --- cmd/camino_messenger_bot.go | 2 +- config/config.go | 2 +- config/config_reader.go | 2 +- config/config_reader_test.go | 2 +- config/flags.go | 2 +- examples/booking/mintnbuy.go | 2 +- examples/events/listen.go | 2 +- examples/rpc/client.go | 2 +- examples/rpc/partner-plugin/handlers/mint_v1.go | 2 +- examples/rpc/partner-plugin/handlers/mint_v2.go | 2 +- examples/rpc/partner-plugin/server.go | 2 +- internal/app/app.go | 2 +- internal/compression/compress.go | 2 +- internal/compression/decompress.go | 2 +- internal/matrix/matrix_messenger.go | 2 +- internal/matrix/msg_assembler.go | 2 +- internal/matrix/msg_assembler_test.go | 2 +- internal/matrix/room_handler.go | 2 +- internal/matrix/room_handler_test.go | 2 +- internal/messaging/compressor.go | 2 +- internal/messaging/compressor_test.go | 2 +- internal/messaging/messenger.go | 2 +- internal/messaging/mint.go | 2 +- internal/messaging/mint_v1.go | 2 +- internal/messaging/mint_v2.go | 2 +- internal/messaging/noop_response_handler.go | 2 +- internal/messaging/processor.go | 2 +- internal/messaging/processor_test.go | 2 +- internal/messaging/response_handler.go | 2 +- internal/messaging/service_registry.go | 2 +- internal/messaging/types/types.go | 2 +- internal/messaging/types/types_test.go | 2 +- internal/metadata/checkpoint.go | 2 +- internal/metadata/metadata.go | 2 +- internal/rpc/client/client.go | 2 +- internal/rpc/rpc.go | 2 +- internal/rpc/server/server.go | 2 +- internal/tracing/exporter.go | 2 +- internal/tracing/nooptracer.go | 2 +- internal/tracing/nooptracer_test.go | 2 +- internal/tracing/tracer.go | 2 +- internal/tracing/tracer_test.go | 2 +- internal/version/version.go | 2 +- main.go | 2 +- pkg/booking/booking.go | 2 +- pkg/chequehandler/cheque_handler.go | 2 +- pkg/chequehandler/cheque_record.go | 2 +- pkg/chequehandler/issued_cheque_record.go | 2 +- pkg/chequehandler/storage/sqlite/cheque_records.go | 2 +- pkg/chequehandler/storage/sqlite/issued_cheque_records.go | 2 +- pkg/chequehandler/storage/sqlite/storage.go | 2 +- pkg/cheques/cheques.go | 2 +- pkg/cheques/eth_typed_data.go | 2 +- pkg/cheques/signer.go | 2 +- pkg/cheques/signer_test.go | 2 +- pkg/cm_accounts/cm_accounts.go | 2 +- pkg/database/sqlite/session.go | 2 +- pkg/database/sqlite/storage.go | 2 +- pkg/erc20/erc20.go | 2 +- pkg/events/listener.go | 2 +- pkg/matrix/types.go | 2 +- pkg/scheduler/job.go | 2 +- pkg/scheduler/scheduler.go | 2 +- pkg/scheduler/scheduler_test.go | 2 +- pkg/scheduler/storage/sqlite/jobs.go | 2 +- pkg/scheduler/storage/sqlite/storage.go | 2 +- pp-mock/handlers/accommodation/v1/accommodation_product_info.go | 2 +- pp-mock/handlers/accommodation/v1/accommodation_product_list.go | 2 +- pp-mock/handlers/accommodation/v1/accommodation_search.go | 2 +- pp-mock/handlers/accommodation/v2/accommodation_product_info.go | 2 +- pp-mock/handlers/accommodation/v2/accommodation_product_list.go | 2 +- pp-mock/handlers/accommodation/v2/accommodation_search.go | 2 +- pp-mock/handlers/book/mint/v1/mint_v1.go | 2 +- pp-mock/handlers/book/mint/v2/mint_v2.go | 2 +- pp-mock/handlers/book/validation/v1/validation_v1.go | 2 +- pp-mock/handlers/book/validation/v2/validation_v2.go | 2 +- pp-mock/handlers/common.go | 2 +- pp-mock/handlers/ping/v1/ping_handler.go | 2 +- pp-mock/server.go | 2 +- utils/tls/tls.go | 2 +- 80 files changed, 80 insertions(+), 80 deletions(-) diff --git a/cmd/camino_messenger_bot.go b/cmd/camino_messenger_bot.go index b2a0f499..69942ac8 100644 --- a/cmd/camino_messenger_bot.go +++ b/cmd/camino_messenger_bot.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package cmd diff --git a/config/config.go b/config/config.go index 198c8293..4a6d1c53 100644 --- a/config/config.go +++ b/config/config.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package config diff --git a/config/config_reader.go b/config/config_reader.go index f86c0995..b5fc61ed 100644 --- a/config/config_reader.go +++ b/config/config_reader.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package config diff --git a/config/config_reader_test.go b/config/config_reader_test.go index 148695e7..45414230 100644 --- a/config/config_reader_test.go +++ b/config/config_reader_test.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package config diff --git a/config/flags.go b/config/flags.go index ac8d8793..299befee 100644 --- a/config/flags.go +++ b/config/flags.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package config diff --git a/examples/booking/mintnbuy.go b/examples/booking/mintnbuy.go index 058ba51a..6b48c588 100644 --- a/examples/booking/mintnbuy.go +++ b/examples/booking/mintnbuy.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package main diff --git a/examples/events/listen.go b/examples/events/listen.go index 5457b2b0..ce130b78 100644 --- a/examples/events/listen.go +++ b/examples/events/listen.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package main diff --git a/examples/rpc/client.go b/examples/rpc/client.go index 97593cf8..dba8ad83 100755 --- a/examples/rpc/client.go +++ b/examples/rpc/client.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package main diff --git a/examples/rpc/partner-plugin/handlers/mint_v1.go b/examples/rpc/partner-plugin/handlers/mint_v1.go index eb2ec123..3d418596 100644 --- a/examples/rpc/partner-plugin/handlers/mint_v1.go +++ b/examples/rpc/partner-plugin/handlers/mint_v1.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package handlers diff --git a/examples/rpc/partner-plugin/handlers/mint_v2.go b/examples/rpc/partner-plugin/handlers/mint_v2.go index fbd99a81..960901df 100644 --- a/examples/rpc/partner-plugin/handlers/mint_v2.go +++ b/examples/rpc/partner-plugin/handlers/mint_v2.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package handlers diff --git a/examples/rpc/partner-plugin/server.go b/examples/rpc/partner-plugin/server.go index 060c72f2..779e297f 100644 --- a/examples/rpc/partner-plugin/server.go +++ b/examples/rpc/partner-plugin/server.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package main diff --git a/internal/app/app.go b/internal/app/app.go index 0948874f..5a053995 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package app diff --git a/internal/compression/compress.go b/internal/compression/compress.go index c4a88ddd..eaecd0fd 100644 --- a/internal/compression/compress.go +++ b/internal/compression/compress.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package compression diff --git a/internal/compression/decompress.go b/internal/compression/decompress.go index 351a1739..b7e60e21 100644 --- a/internal/compression/decompress.go +++ b/internal/compression/decompress.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package compression diff --git a/internal/matrix/matrix_messenger.go b/internal/matrix/matrix_messenger.go index 4ecdf1df..1fda117e 100644 --- a/internal/matrix/matrix_messenger.go +++ b/internal/matrix/matrix_messenger.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package matrix diff --git a/internal/matrix/msg_assembler.go b/internal/matrix/msg_assembler.go index ffa0cc49..8e5f2c6b 100644 --- a/internal/matrix/msg_assembler.go +++ b/internal/matrix/msg_assembler.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package matrix diff --git a/internal/matrix/msg_assembler_test.go b/internal/matrix/msg_assembler_test.go index d4a4e6e5..18a69d55 100644 --- a/internal/matrix/msg_assembler_test.go +++ b/internal/matrix/msg_assembler_test.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package matrix diff --git a/internal/matrix/room_handler.go b/internal/matrix/room_handler.go index ed09efa1..4ac3739f 100644 --- a/internal/matrix/room_handler.go +++ b/internal/matrix/room_handler.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package matrix diff --git a/internal/matrix/room_handler_test.go b/internal/matrix/room_handler_test.go index 8200cb36..9f2750bf 100644 --- a/internal/matrix/room_handler_test.go +++ b/internal/matrix/room_handler_test.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package matrix diff --git a/internal/messaging/compressor.go b/internal/messaging/compressor.go index 5b43bd09..22c9e89e 100644 --- a/internal/messaging/compressor.go +++ b/internal/messaging/compressor.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package messaging diff --git a/internal/messaging/compressor_test.go b/internal/messaging/compressor_test.go index 81bf9be6..882f4a53 100644 --- a/internal/messaging/compressor_test.go +++ b/internal/messaging/compressor_test.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package messaging diff --git a/internal/messaging/messenger.go b/internal/messaging/messenger.go index 03956091..f820958c 100644 --- a/internal/messaging/messenger.go +++ b/internal/messaging/messenger.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package messaging diff --git a/internal/messaging/mint.go b/internal/messaging/mint.go index bc2ece81..6f7093bb 100644 --- a/internal/messaging/mint.go +++ b/internal/messaging/mint.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package messaging diff --git a/internal/messaging/mint_v1.go b/internal/messaging/mint_v1.go index 75a72c18..f9afe50a 100644 --- a/internal/messaging/mint_v1.go +++ b/internal/messaging/mint_v1.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package messaging diff --git a/internal/messaging/mint_v2.go b/internal/messaging/mint_v2.go index 09f3f7b7..643175d4 100644 --- a/internal/messaging/mint_v2.go +++ b/internal/messaging/mint_v2.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package messaging diff --git a/internal/messaging/noop_response_handler.go b/internal/messaging/noop_response_handler.go index b32c45de..914fa4a2 100644 --- a/internal/messaging/noop_response_handler.go +++ b/internal/messaging/noop_response_handler.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package messaging diff --git a/internal/messaging/processor.go b/internal/messaging/processor.go index 87bc8405..6ff9978d 100644 --- a/internal/messaging/processor.go +++ b/internal/messaging/processor.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package messaging diff --git a/internal/messaging/processor_test.go b/internal/messaging/processor_test.go index 5c5b525f..77eecaab 100644 --- a/internal/messaging/processor_test.go +++ b/internal/messaging/processor_test.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package messaging diff --git a/internal/messaging/response_handler.go b/internal/messaging/response_handler.go index bf5d4879..ed9a942c 100644 --- a/internal/messaging/response_handler.go +++ b/internal/messaging/response_handler.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package messaging diff --git a/internal/messaging/service_registry.go b/internal/messaging/service_registry.go index 22f244cb..89a6bb6a 100644 --- a/internal/messaging/service_registry.go +++ b/internal/messaging/service_registry.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package messaging diff --git a/internal/messaging/types/types.go b/internal/messaging/types/types.go index 6023d0df..e977f703 100644 --- a/internal/messaging/types/types.go +++ b/internal/messaging/types/types.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package types diff --git a/internal/messaging/types/types_test.go b/internal/messaging/types/types_test.go index 681896da..12f550dd 100644 --- a/internal/messaging/types/types_test.go +++ b/internal/messaging/types/types_test.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package types diff --git a/internal/metadata/checkpoint.go b/internal/metadata/checkpoint.go index dafbfd43..8d294e2c 100644 --- a/internal/metadata/checkpoint.go +++ b/internal/metadata/checkpoint.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package metadata diff --git a/internal/metadata/metadata.go b/internal/metadata/metadata.go index 45b43810..d3e8799e 100644 --- a/internal/metadata/metadata.go +++ b/internal/metadata/metadata.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package metadata diff --git a/internal/rpc/client/client.go b/internal/rpc/client/client.go index df1e8e10..214974b3 100644 --- a/internal/rpc/client/client.go +++ b/internal/rpc/client/client.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package client diff --git a/internal/rpc/rpc.go b/internal/rpc/rpc.go index 193a0d25..7310c2fc 100644 --- a/internal/rpc/rpc.go +++ b/internal/rpc/rpc.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package rpc diff --git a/internal/rpc/server/server.go b/internal/rpc/server/server.go index 8b101b0a..655f1484 100644 --- a/internal/rpc/server/server.go +++ b/internal/rpc/server/server.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package server diff --git a/internal/tracing/exporter.go b/internal/tracing/exporter.go index fcf6a6b5..e9d320fb 100644 --- a/internal/tracing/exporter.go +++ b/internal/tracing/exporter.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package tracing diff --git a/internal/tracing/nooptracer.go b/internal/tracing/nooptracer.go index 9ba3771a..836ff149 100644 --- a/internal/tracing/nooptracer.go +++ b/internal/tracing/nooptracer.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package tracing diff --git a/internal/tracing/nooptracer_test.go b/internal/tracing/nooptracer_test.go index c1f03afa..7862ae07 100644 --- a/internal/tracing/nooptracer_test.go +++ b/internal/tracing/nooptracer_test.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package tracing diff --git a/internal/tracing/tracer.go b/internal/tracing/tracer.go index 1069986a..7c1dbef0 100644 --- a/internal/tracing/tracer.go +++ b/internal/tracing/tracer.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package tracing diff --git a/internal/tracing/tracer_test.go b/internal/tracing/tracer_test.go index 6a97957c..07d326a5 100644 --- a/internal/tracing/tracer_test.go +++ b/internal/tracing/tracer_test.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package tracing diff --git a/internal/version/version.go b/internal/version/version.go index 2aa5c78d..f8ff508f 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package version diff --git a/main.go b/main.go index 8fc3b544..0b67c6ec 100644 --- a/main.go +++ b/main.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package main diff --git a/pkg/booking/booking.go b/pkg/booking/booking.go index b3aeaf6f..c8be1d3d 100644 --- a/pkg/booking/booking.go +++ b/pkg/booking/booking.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package booking diff --git a/pkg/chequehandler/cheque_handler.go b/pkg/chequehandler/cheque_handler.go index 732bf487..326b8656 100644 --- a/pkg/chequehandler/cheque_handler.go +++ b/pkg/chequehandler/cheque_handler.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package chequehandler diff --git a/pkg/chequehandler/cheque_record.go b/pkg/chequehandler/cheque_record.go index 7461c8f2..446c86a8 100644 --- a/pkg/chequehandler/cheque_record.go +++ b/pkg/chequehandler/cheque_record.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package chequehandler diff --git a/pkg/chequehandler/issued_cheque_record.go b/pkg/chequehandler/issued_cheque_record.go index 6e80f02f..41144f72 100644 --- a/pkg/chequehandler/issued_cheque_record.go +++ b/pkg/chequehandler/issued_cheque_record.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package chequehandler diff --git a/pkg/chequehandler/storage/sqlite/cheque_records.go b/pkg/chequehandler/storage/sqlite/cheque_records.go index c20a5e33..222f7bc0 100644 --- a/pkg/chequehandler/storage/sqlite/cheque_records.go +++ b/pkg/chequehandler/storage/sqlite/cheque_records.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package sqlite diff --git a/pkg/chequehandler/storage/sqlite/issued_cheque_records.go b/pkg/chequehandler/storage/sqlite/issued_cheque_records.go index eeb31a7e..de8cf8da 100644 --- a/pkg/chequehandler/storage/sqlite/issued_cheque_records.go +++ b/pkg/chequehandler/storage/sqlite/issued_cheque_records.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package sqlite diff --git a/pkg/chequehandler/storage/sqlite/storage.go b/pkg/chequehandler/storage/sqlite/storage.go index 9a484240..5a0e41ae 100644 --- a/pkg/chequehandler/storage/sqlite/storage.go +++ b/pkg/chequehandler/storage/sqlite/storage.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package sqlite diff --git a/pkg/cheques/cheques.go b/pkg/cheques/cheques.go index ee23be94..7eab78a5 100644 --- a/pkg/cheques/cheques.go +++ b/pkg/cheques/cheques.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package cheques diff --git a/pkg/cheques/eth_typed_data.go b/pkg/cheques/eth_typed_data.go index 71f890e5..8db51400 100644 --- a/pkg/cheques/eth_typed_data.go +++ b/pkg/cheques/eth_typed_data.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package cheques diff --git a/pkg/cheques/signer.go b/pkg/cheques/signer.go index 8021d705..349c9f40 100644 --- a/pkg/cheques/signer.go +++ b/pkg/cheques/signer.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package cheques diff --git a/pkg/cheques/signer_test.go b/pkg/cheques/signer_test.go index 2895abc9..60ef9b99 100644 --- a/pkg/cheques/signer_test.go +++ b/pkg/cheques/signer_test.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package cheques diff --git a/pkg/cm_accounts/cm_accounts.go b/pkg/cm_accounts/cm_accounts.go index a8e40634..e3e3dbbc 100644 --- a/pkg/cm_accounts/cm_accounts.go +++ b/pkg/cm_accounts/cm_accounts.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package cmaccounts diff --git a/pkg/database/sqlite/session.go b/pkg/database/sqlite/session.go index dee684bd..14673cb2 100644 --- a/pkg/database/sqlite/session.go +++ b/pkg/database/sqlite/session.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package sqlite diff --git a/pkg/database/sqlite/storage.go b/pkg/database/sqlite/storage.go index a67942ca..212aebcc 100644 --- a/pkg/database/sqlite/storage.go +++ b/pkg/database/sqlite/storage.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package sqlite diff --git a/pkg/erc20/erc20.go b/pkg/erc20/erc20.go index 9dec86ea..962dbcb4 100644 --- a/pkg/erc20/erc20.go +++ b/pkg/erc20/erc20.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package erc20 diff --git a/pkg/events/listener.go b/pkg/events/listener.go index 73646e09..1cd7303e 100644 --- a/pkg/events/listener.go +++ b/pkg/events/listener.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package events diff --git a/pkg/matrix/types.go b/pkg/matrix/types.go index 511be4e1..0f8b7317 100644 --- a/pkg/matrix/types.go +++ b/pkg/matrix/types.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package matrix diff --git a/pkg/scheduler/job.go b/pkg/scheduler/job.go index cc8629df..184978a2 100644 --- a/pkg/scheduler/job.go +++ b/pkg/scheduler/job.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package scheduler diff --git a/pkg/scheduler/scheduler.go b/pkg/scheduler/scheduler.go index f5ab17dc..fa8fb020 100644 --- a/pkg/scheduler/scheduler.go +++ b/pkg/scheduler/scheduler.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package scheduler diff --git a/pkg/scheduler/scheduler_test.go b/pkg/scheduler/scheduler_test.go index 459d05c5..e940e83d 100644 --- a/pkg/scheduler/scheduler_test.go +++ b/pkg/scheduler/scheduler_test.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package scheduler diff --git a/pkg/scheduler/storage/sqlite/jobs.go b/pkg/scheduler/storage/sqlite/jobs.go index 62d36a35..1cfaf0e3 100644 --- a/pkg/scheduler/storage/sqlite/jobs.go +++ b/pkg/scheduler/storage/sqlite/jobs.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package sqlite diff --git a/pkg/scheduler/storage/sqlite/storage.go b/pkg/scheduler/storage/sqlite/storage.go index db053bf2..f1a362fb 100644 --- a/pkg/scheduler/storage/sqlite/storage.go +++ b/pkg/scheduler/storage/sqlite/storage.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package sqlite diff --git a/pp-mock/handlers/accommodation/v1/accommodation_product_info.go b/pp-mock/handlers/accommodation/v1/accommodation_product_info.go index e2878005..43067757 100644 --- a/pp-mock/handlers/accommodation/v1/accommodation_product_info.go +++ b/pp-mock/handlers/accommodation/v1/accommodation_product_info.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package handlers diff --git a/pp-mock/handlers/accommodation/v1/accommodation_product_list.go b/pp-mock/handlers/accommodation/v1/accommodation_product_list.go index 8822b3b8..98cfad4b 100644 --- a/pp-mock/handlers/accommodation/v1/accommodation_product_list.go +++ b/pp-mock/handlers/accommodation/v1/accommodation_product_list.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package handlers diff --git a/pp-mock/handlers/accommodation/v1/accommodation_search.go b/pp-mock/handlers/accommodation/v1/accommodation_search.go index 8b7a82ff..c6d677cf 100644 --- a/pp-mock/handlers/accommodation/v1/accommodation_search.go +++ b/pp-mock/handlers/accommodation/v1/accommodation_search.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package handlers diff --git a/pp-mock/handlers/accommodation/v2/accommodation_product_info.go b/pp-mock/handlers/accommodation/v2/accommodation_product_info.go index 4f9522c2..03371773 100644 --- a/pp-mock/handlers/accommodation/v2/accommodation_product_info.go +++ b/pp-mock/handlers/accommodation/v2/accommodation_product_info.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package handlers diff --git a/pp-mock/handlers/accommodation/v2/accommodation_product_list.go b/pp-mock/handlers/accommodation/v2/accommodation_product_list.go index fa988d9c..06b3739e 100644 --- a/pp-mock/handlers/accommodation/v2/accommodation_product_list.go +++ b/pp-mock/handlers/accommodation/v2/accommodation_product_list.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package handlers diff --git a/pp-mock/handlers/accommodation/v2/accommodation_search.go b/pp-mock/handlers/accommodation/v2/accommodation_search.go index a4a081b5..92c0f750 100644 --- a/pp-mock/handlers/accommodation/v2/accommodation_search.go +++ b/pp-mock/handlers/accommodation/v2/accommodation_search.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package handlers diff --git a/pp-mock/handlers/book/mint/v1/mint_v1.go b/pp-mock/handlers/book/mint/v1/mint_v1.go index 8281e10f..36b67f21 100644 --- a/pp-mock/handlers/book/mint/v1/mint_v1.go +++ b/pp-mock/handlers/book/mint/v1/mint_v1.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package handlers diff --git a/pp-mock/handlers/book/mint/v2/mint_v2.go b/pp-mock/handlers/book/mint/v2/mint_v2.go index 2d34b1f9..57ef2c8e 100644 --- a/pp-mock/handlers/book/mint/v2/mint_v2.go +++ b/pp-mock/handlers/book/mint/v2/mint_v2.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package handlers diff --git a/pp-mock/handlers/book/validation/v1/validation_v1.go b/pp-mock/handlers/book/validation/v1/validation_v1.go index 5115a476..82a14a67 100644 --- a/pp-mock/handlers/book/validation/v1/validation_v1.go +++ b/pp-mock/handlers/book/validation/v1/validation_v1.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package handlers diff --git a/pp-mock/handlers/book/validation/v2/validation_v2.go b/pp-mock/handlers/book/validation/v2/validation_v2.go index 514d6c25..ac136985 100644 --- a/pp-mock/handlers/book/validation/v2/validation_v2.go +++ b/pp-mock/handlers/book/validation/v2/validation_v2.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package handlers diff --git a/pp-mock/handlers/common.go b/pp-mock/handlers/common.go index bc5e0cb9..9d1bb0f4 100644 --- a/pp-mock/handlers/common.go +++ b/pp-mock/handlers/common.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package common diff --git a/pp-mock/handlers/ping/v1/ping_handler.go b/pp-mock/handlers/ping/v1/ping_handler.go index ab227bca..811c26af 100644 --- a/pp-mock/handlers/ping/v1/ping_handler.go +++ b/pp-mock/handlers/ping/v1/ping_handler.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package handlers diff --git a/pp-mock/server.go b/pp-mock/server.go index bfa4a70e..2757aec1 100644 --- a/pp-mock/server.go +++ b/pp-mock/server.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package main diff --git a/utils/tls/tls.go b/utils/tls/tls.go index a29368a8..81d8204a 100644 --- a/utils/tls/tls.go +++ b/utils/tls/tls.go @@ -1,4 +1,4 @@ -// Copyright (C) 2022-2024, Chain4Travel AG. All rights reserved. +// Copyright (C) 2022-2025, Chain4Travel AG. All rights reserved. // See the file LICENSE for licensing terms. package utils