mirror of
https://github.com/42wim/matterbridge.git
synced 2025-05-31 11:57:35 +02:00
8 lines
309 B
Go
8 lines
309 B
Go
/*
|
|
Package encoding is a wrapper for the core functionality of packages like "encoding/json" and "encoding/gob".
|
|
|
|
It contains the Codec interface and multiple implementations for encoding Go values to other formats and decode from other formats to Go values.
|
|
Formats can be JSON, gob etc.
|
|
*/
|
|
package encoding
|