Skip to content

ddevcap/castos-go

Repository files navigation

Go Reference

Castos Golang Client

About

This client allows you to integrate with the Castos API using the golang programming language. More information about Castos here: https://castos.com/

Install

go get github.com/ddevcap/castos-go

Example

token := "apitoken" // Castos API token.
podcastId := 1234   // Castos podcast id.

client := castos.NewClient(token)

episodes, err := client.Episodes.GetAll(podcastId)
if err != nil {
	log.fatal(err)
}

for _, episode := range episodes {
	// Do awesome episode stuff
}

WIP

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages