feat: add basic app
This commit is contained in:
parent
d4c1af4831
commit
c94098afef
13 changed files with 1850 additions and 0 deletions
7
internal/training/errors.go
Normal file
7
internal/training/errors.go
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
package training
|
||||
|
||||
type ErrNotFound struct{}
|
||||
|
||||
func (ErrNotFound) Error() string {
|
||||
return "not found"
|
||||
}
|
||||
Reference in a new issue