move api package to sub folder

This commit is contained in:
Samuel Lorch 2021-08-30 14:00:05 +02:00
parent ff29c83d56
commit ff1be787f2
23 changed files with 61 additions and 61 deletions

8
api/errors.go Normal file
View file

@ -0,0 +1,8 @@
package api
import "errors"
var (
ErrAPIResponseErrorStatusCode = errors.New("Error API JSON Response Status")
ErrAPIResponseUnknownStatusCode = errors.New("Unknown API JSON Response Status")
)