Initial Commit

This commit is contained in:
2019-09-16 21:36:27 +02:00
commit a86462206b
17 changed files with 771 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package hub
import "errors"
var (
errorNoUserDefined = errors.New("No User defined")
errorNoPasswordDefined = errors.New("No Password defined")
errorNoNamespaceDefined = errors.New("No Namespace defined")
errorNoRepositoryDefined = errors.New("No Repository defined")
)