mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-15 17:35:45 +00:00
11 lines
213 B
Nim
11 lines
213 B
Nim
import
|
|
serialization/formats
|
|
|
|
serializationFormat Json,
|
|
mimeType = "application/json"
|
|
|
|
template supports*(_: type Json, T: type): bool =
|
|
# The JSON format should support every type
|
|
true
|
|
|