Skip to content
/ freemyip Public

Go library for accessing the freemyip.com API.

License

Notifications You must be signed in to change notification settings

nrdcg/freemyip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go library for accessing the freemyip.com API

Build Status PkgGoDev Go Report Card

A Go client library for accessing the freemyip.com API.

Examples

package main

import (
	"context"
	"fmt"

	"github.com/nrdcg/freemyip"
)

func main() {
	client := freemyip.New("secret", true)

	ctx := context.Background()

	resp, err := client.UpdateDomain(ctx, "example", "")
	if err != nil {
		panic(err)
	}

	fmt.Println(resp)
}

API Documentation

About

Go library for accessing the freemyip.com API.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks