package main
import (
"github.com/boltlessengineer/tistorysdk"
)
const (
id string = "{{App ID}}"
sk string = "{{Secret Key}}"
)
func main() {
tistory := tistorysdk.NewClient(id, sk)
//...
}
Tistory SDK for Go
package main
import (
"github.com/boltlessengineer/tistorysdk"
)
const (
id string = "{{App ID}}"
sk string = "{{Secret Key}}"
)
func main() {
tistory := tistorysdk.NewClient(id, sk)
//...
}
Tistory SDK for Go