mirror of
https://github.com/grassrootseconomics/cic-go.git
synced 2025-02-16 22:44:12 +01:00
16 lines
204 B
Go
16 lines
204 B
Go
|
package cic_net
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
type tConfig struct {
|
||
|
rpcProvider string
|
||
|
tokenIndex string
|
||
|
}
|
||
|
|
||
|
var conf = &tConfig{
|
||
|
rpcProvider: os.Getenv("RPC_PROVIDER"),
|
||
|
tokenIndex: os.Getenv("TOKEN_INDEX"),
|
||
|
}
|