package main

import "fmt"

func main() {
	baseURL := "https://saoauth.com/api/client/auth"
	appName := "Kirigaya"
	ownerID := "706f2d48f9eb0762"
	appSecret := "27b79d48a7df496de8aff0c56f7624ddf29e9fff66fac08efb578e919a74e42f"
	appVersion := "1.0"

	fmt.Println("SaoAuth Go example ready.")
	fmt.Println("URL:", baseURL)
	fmt.Printf("App: %s v%s\n", appName, appVersion)
	fmt.Println("Owner:", ownerID)
	fmt.Println("Secret:", appSecret)
}
