Skip to content

joga84/libdns-njalla

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

njalla for libdns

Go Reference

This package implements the libdns interfaces for njalla, allowing you to manage DNS records.

Example

package main

import (
    "context"
    "fmt"

    p "github.com/libdns/njalla"
)

func main() {
    p := Provider{
        APIToken: "TOKEN",
    }

    records, err := p.GetRecords(context.Background(), "domain.tld")
    if err != nil {
        fmt.Printf("Error: %s", err.Error())
        return
    }

    fmt.Println(records)
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Go 100.0%