mirror of
https://github.com/weaveworks/scope.git
synced 2026-05-23 17:42:53 +00:00
19 lines
656 B
Go
19 lines
656 B
Go
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
|
|
|
|
// Package mobileanalyticsiface provides an interface for the Amazon Mobile Analytics.
|
|
package mobileanalyticsiface
|
|
|
|
import (
|
|
"github.com/aws/aws-sdk-go/aws/request"
|
|
"github.com/aws/aws-sdk-go/service/mobileanalytics"
|
|
)
|
|
|
|
// MobileAnalyticsAPI is the interface type for mobileanalytics.MobileAnalytics.
|
|
type MobileAnalyticsAPI interface {
|
|
PutEventsRequest(*mobileanalytics.PutEventsInput) (*request.Request, *mobileanalytics.PutEventsOutput)
|
|
|
|
PutEvents(*mobileanalytics.PutEventsInput) (*mobileanalytics.PutEventsOutput, error)
|
|
}
|
|
|
|
var _ MobileAnalyticsAPI = (*mobileanalytics.MobileAnalytics)(nil)
|