sunlight-api/sunlight.go

10 lines
189 B
Go
Raw Normal View History

2016-06-16 16:22:03 +00:00
package sunlightApi
2016-06-17 18:43:20 +00:00
import "net/url"
// SunlightAPI is the interface for all of the
// Sunlight Foundation's APIs
type SunlightAPI interface {
call(string, url.Values) ([]byte, error)
}