kounkou / crotal

Crotal makes it easy to retrieve the configuration value for a given key.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

license Go Report Card

Crotal

Crotal makes it easy to retrieve the configuration value for a given key.

Installation

go get github.com/kounkou/crotal
go build

Usage

Add a json file called crotal.json with your configurations to your root directory.

{
    "212345678910":1000,
    "119876543210":3,
    "612345677910":5000
}

Then use one of you account numbers to query the configuration value.

package main

import (
        "fmt"
        "github.com/kounkou/crotal"
)

func main() {
    keyId := "119876543210"
    r, err := crotal.Crotal(keyId)

    if err != nil {
        fmt.Println(err)
    }

    // Use the configuration value in your application
    // ...
}

About

Crotal makes it easy to retrieve the configuration value for a given key.

License:MIT License


Languages

Language:Go 100.0%