Browse Source
Also remove automatic drop on error. We are not using it, and I'm not sure if it's a good idea anyway.pull/1411/head v1.0.0-beta6-dev464
Alexey Tsvetkov
3 years ago
committed by
GitHub
7 changed files with 18 additions and 32 deletions
@ -0,0 +1,12 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2020-2021 JetBrains s.r.o. and respective authors and developers. |
||||||
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE.txt file. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.jetbrains.compose.internal.publishing.utils |
||||||
|
|
||||||
|
import okhttp3.MediaType.Companion.toMediaType |
||||||
|
|
||||||
|
internal object Json { |
||||||
|
val mediaType = "application/json".toMediaType() |
||||||
|
} |
Loading…
Reference in new issue