mirror of
https://github.com/grassrootseconomics/cic-go.git
synced 2025-07-05 18:12:49 +02: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"),
|
|
}
|