Updated on 2026-08-14

This commit is contained in:
Tangem 2022-09-23 02:11:50 +03:00
parent 53f9b9d572
commit d17d9e35bf
28 changed files with 514 additions and 455 deletions

View file

@ -0,0 +1,8 @@
package com.tangem.common
/**
[REDACTED_AUTHOR]
*/
interface Converter<I, O> {
fun convert(value: I): O
}