| 123456789101112131415161718192021222324252627 |
- // +build codegen
- package api
- type examplesBuilder interface {
- BuildShape(*ShapeRef, map[string]interface{}, bool) string
- BuildList(string, string, *ShapeRef, []interface{}) string
- BuildComplex(string, string, *ShapeRef, map[string]interface{}) string
- GoType(*ShapeRef, bool) string
- Imports(*API) string
- }
- type defaultExamplesBuilder struct {
- ShapeValueBuilder
- }
- func (builder defaultExamplesBuilder) Imports(a *API) string {
- return `"fmt"
- "strings"
- "time"
- "` + SDKImportRoot + `/aws"
- "` + SDKImportRoot + `/aws/awserr"
- "` + SDKImportRoot + `/aws/session"
- "` + SDKImportRoot + `/service/` + a.PackageName() + `"
- `
- }
|