Sunlight Interface

This commit is contained in:
Brian Buller 2016-06-17 13:43:20 -05:00
parent f77c2932ec
commit 8b4acc74f8
1 changed files with 8 additions and 0 deletions

View File

@ -1 +1,9 @@
package sunlightApi
import "net/url"
// SunlightAPI is the interface for all of the
// Sunlight Foundation's APIs
type SunlightAPI interface {
call(string, url.Values) ([]byte, error)
}