mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* Added high level roadmap. * Changed to funtion.yaml. * Added logo * updating quickstart code example, WIP, waiting on another merge. * Minor updates. * Changed function.yaml to func.yaml and updated fnctl README.
14 lines
191 B
Go
14 lines
191 B
Go
package main
|
|
|
|
type notFoundError struct {
|
|
S string
|
|
}
|
|
|
|
func (e *notFoundError) Error() string {
|
|
return e.S
|
|
}
|
|
|
|
func newNotFoundError(s string) *notFoundError {
|
|
return ¬FoundError{S: s}
|
|
}
|