Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

rkosegi/active24-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Active24.cz client in Go

This is client library to interact with Active24 API. Currently, only subset of API is implemented, but contributions are always welcome.

Usage

package main

import "github.com/rkosegi/active24-go/active24"

func main() {
	client := active24.New("my-secret-api-token")

	alias := "host1"
	_, err := client.Dns().With("example.com").Create(active24.DnsRecordTypeA, &active24.DnsRecord{
		Alias: &alias,
	})
	if err != nil {
		panic(err)
	}
}

About

Active24 API client in Go

Topics

Resources

License

Stars

Watchers

Forks

Contributors 2

  •  
  •  

Languages