forked from TrueCloudLab/lego
6004e599ed
* feat: add dep configuration files. * chore: add vendor folder. * refactor: update Dockerfile. * review: remove git from Dockerfile. * review: remove RUN apk. * review: dep status. * feat: added .dockerignore
16 lines
310 B
Go
16 lines
310 B
Go
package dns
|
|
|
|
import (
|
|
"github.com/akamai/AkamaiOPEN-edgegrid-golang/edgegrid"
|
|
)
|
|
|
|
var (
|
|
// Config contains the Akamai OPEN Edgegrid API credentials
|
|
// for automatic signing of requests
|
|
Config edgegrid.Config
|
|
)
|
|
|
|
// Init sets the FastDNS edgegrid Config
|
|
func Init(config edgegrid.Config) {
|
|
Config = config
|
|
}
|