mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
Rename to GitHub (#3)
* circle * Rename to github and fn->cli * Rename to github and fn->cli
This commit is contained in:
13
cli/errors.go
Normal file
13
cli/errors.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package main
|
||||
|
||||
type notFoundError struct {
|
||||
S string
|
||||
}
|
||||
|
||||
func (e *notFoundError) Error() string {
|
||||
return e.S
|
||||
}
|
||||
|
||||
func newNotFoundError(s string) *notFoundError {
|
||||
return ¬FoundError{S: s}
|
||||
}
|
||||
Reference in New Issue
Block a user