Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 388 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 388 Bytes

Getting Started

Installing

To start using kConf, install Go and run go get:

$ go get github.com/tloto/kConf

Get a value

package main

import "github.com/tloto/kConf"

func init(){
    kConf.SetFiePath("./test.json")
}

func main() {
	str := kConf.GetConfString("compilerOptions.module")
	fmt.println(str)
}

This will print:

test