10 lines
138 B
Go
10 lines
138 B
Go
package pixelapi
|
|
|
|
type PixelAPI struct {
|
|
apiEndpoint string
|
|
}
|
|
|
|
func New(apiEndpoint string) *PixelAPI {
|
|
return &PixelAPI{apiEndpoint}
|
|
}
|