Skip to content

wastedcode/serializer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Crypt

A simple GoLang package to serialize data

Build Status GoDoc

Example Usage

type TestingStruct struct {
    Num int
    ValueStr string
}

value := TestingStruct(1, "Hello")
serialized, err := SerializeInterfaceToString(value)

deserialized := TestingStruct{}
err = DeserializeStringToInterface(serialized)

About

Serialize any kind of data to string using Gob + Base64

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages