From 034c60ff71712a7621ecc84cdc7dc44427afa66d Mon Sep 17 00:00:00 2001 From: Atick Date: Sat, 12 Oct 2024 20:23:48 +0300 Subject: [PATCH] Fix linting --- .../network/di/retrofit/ConverterModule.kt | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/network/src/main/kotlin/dev/atick/network/di/retrofit/ConverterModule.kt b/network/src/main/kotlin/dev/atick/network/di/retrofit/ConverterModule.kt index 2040893c9..97b3801f9 100644 --- a/network/src/main/kotlin/dev/atick/network/di/retrofit/ConverterModule.kt +++ b/network/src/main/kotlin/dev/atick/network/di/retrofit/ConverterModule.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 Atick Faisal + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package dev.atick.network.di.retrofit import dagger.Module @@ -31,4 +47,4 @@ object ConverterModule { "application/json; charset=UTF8".toMediaType(), ) } -} \ No newline at end of file +}