Initial commit

This commit is contained in:
2021-09-12 20:09:08 -04:00
commit 10cf806b73
5 changed files with 168 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package digitalocean
import "errors"
var (
ErrNotFound = errors.New("not found")
ErrClientError = errors.New("client error")
ErrServerError = errors.New("server error")
)