Files
fn-serverless/vendor/github.com/funcy/functions_go/app.go
2017-06-30 11:22:56 -07:00

11 lines
261 B
Go

package functions
type App struct {
// Name of this app. Must be different than the image name. Can ony contain alphanumeric, -, and _.
Name string `json:"name,omitempty"`
// Application configuration
Config map[string]string `json:"config,omitempty"`
}