Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 283 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 283 Bytes

chatspry.go

Go client for Chatspry

package main

import chatspry "github.com/chatspry/chatspry.go/v1"

const baseURL = "foo.bar.baz/api"

func main()
  client := chatspry.NewClient(baseURL)
  client.Login("foo", "bar")
  // Do things with your client here!
}