Pawel Wieczorek | f649f22 | 2019-10-07 17:00:49 +0200 | [diff] [blame] | 1 | package check |
2 | |||||
3 | import ( | ||||
4 | "errors" | ||||
5 | ) | ||||
6 | |||||
7 | var ( | ||||
8 | // ErrNotImplemented is returned when function is not implemented yet. | ||||
9 | ErrNotImplemented = errors.New("function not implemented") | ||||
10 | ) |