Skip to content

ReserveKit/reservekit-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ReserveKit Go SDK

A Go client library for the ReserveKit API.

Installation

go get github.com/ReserveKit/reservekit-go

Quick Start

package main
import (
"fmt"
"github.com/ReserveKit/reservekit-go/pkg/reservekit"
)
func main() {
// Create a new client
client := reservekit.NewClient("your-api-key")
// Initialize a service
err := client.InitService(1)
if err != nil {
panic(err)
}
// Get available time slots
slots, err := client.Service().GetTimeSlots()
if err != nil {
panic(err)
}
fmt.Printf("Found %d time slots\n", len(slots))
}

Documentation

For more detailed information on the API and available methods, please refer to the ReserveKit API Documentation.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Releases

No releases published

Packages

No packages published

Languages