mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
11 lines
261 B
Go
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"`
|
|
}
|