Skip to content

17e10/go-jsonb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-jsonb

GoDev

go-jsonb は JSON ファイルの読み書きを提供します.

Usage

import "github.com/17e10/go-jsonb"

type person struct {
    Name string `json:"name"`
    Age  int    `json:"age"`
}
john := person{"john", 20}
jsonb.Save(filename, &john)

var readed person
jsonb.Load(filename, &readed)
readed == john

License

This software is released under the MIT License, see LICENSE.

Author

17e10

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages