mirror of
https://github.com/status-im/status-lib.git
synced 2025-01-12 21:44:57 +00:00
10 lines
272 B
Nim
10 lines
272 B
Nim
import chronicles
|
|
import ../stickers as status_stickers
|
|
|
|
logScope:
|
|
topics = "sticker-decoding"
|
|
|
|
# TODO: this is for testing purposes, the correct function should decode the hash
|
|
proc decodeContentHash*(value: string): string =
|
|
status_stickers.decodeContentHash(value)
|