Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Generator ¶
type Generator struct{}
Generator will parse an existing `buffalo.App` and add the relevant code to make that application be ready for being subscribed to an Event Grid Topic.
type TemplateCache ¶
TemplateCache stores files used as templates, so that they will always be distributed along with thie buffalo-azure binary.
func (TemplateCache) Clear ¶
func (c TemplateCache) Clear()
Clear removes all entries from a TemplateCache, so that they can be collected by the garbage collector.
func (TemplateCache) Rehydrate ¶
func (c TemplateCache) Rehydrate(root string) error
Rehydrate writes the contents of each template file back to disk, rooted at the directory specified.
type TypeStub ¶
TypeStub fulfills the reflect.Type interface, but only knows the fully qualified name of a type. All other details will panic upon use.
func NewTypeStub ¶
NewTypeStub creates a new reflect.Type stub based on a package and a type.
func NewTypeStubIdentifier ¶
NewTypeStubIdentifier creates a new reflect.Type stub based on a fully-qualified Go type name. The expected format of the identifier is: <package path>.<type name>
For example: ``` github.com/Azure/azure-sdk-for-go/services/eventgrid/2018-01-01/eventgrid.StorageBlobCreatedEventData ```