Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

FozzyHosting/winvps-go-client

Repository files navigation

winvps-go-client

A Winvps API client to interact with Winvps service

Test Status

Developer Documentation

The actual API Documentation available on this link.

Usage

import "github.com/fozzyhosting/winvps-go-client"

winClient, err := winvps.NewClient("token")
if err != nil {
  log.Fatalf("Failed to create client: %v", err)
}

machines, _, err := winClient.GetMachines()

Examples

The examples directory contains serveral examples of using this library.