Go

Go SDK

Resmi Go SDK'sı. Context desteği, tam tip tanımları. Go 1.21+.

Kurulum
$ go get github.com/TCG-Price-Lookup/tcglookup-go

Temel Özellikler

  • Zero third-party dependencies
  • Idiomatic Go design
  • Functional options pattern
  • Typed error handling
  • Context support
Kullanım Örneği
package main

import (
  "fmt"
  tcg "github.com/TCG-Price-Lookup/tcglookup-go"
)

func main() {
  client := tcg.NewClient(tcg.WithAPIKey("your-api-key"))
  results, _ := client.Search("charizard")
  fmt.Println(results)
}
GitHub →

TCG API ile geliştirmeye başlayın

Ücretsiz API anahtarınızı alın ve dakikalar içinde kart fiyatlarını sorgulamaya başlayın.